summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2010-09-160.15.0 in the versionsAlbert Astals Cid1-1/+1
2010-07-19Remove exception supportAlbert Astals Cid1-4/+0
We don't use it and don't even support it properly
2010-07-14Add uninstalled .pc file for poppler when using autoconfBrian Cameron1-1/+8
2010-07-12Check for declaration of gettimeofday()Hib Eris1-3/+4
The function gettimeofday() is not declared in ansi mode with the mingw compiler, even though the function exists. Therefore, configure must not only check with AC_CHECK_FUNC, but also with AC_CHECK_DECL. Also, the checks must run in a C++ context because that is where gettimeofday() is used.
2010-07-12Set -ansi compiler flag early in configure.acHib Eris1-2/+5
The -ansi compiler flag does not enable warnings, but turns of certain features of GCC. To force feature tests to use this flag, it should be set early in configure.ac This is important for the mingw compiler where header files refrain from declaring certain function (e.g. gettimeofday()) when the -ansi flag is set.
2010-07-08Fix build when compiling without glib frontendCarlos Garcia Campos1-0/+1
2010-07-02[glib] Add GObject introspection supportCarlos Garcia Campos1-0/+5
2010-06-30[glib] docs: Add version informationCarlos Garcia Campos1-0/+1
2010-06-30[glib] docs: do not use gtk-doc templatesCarlos Garcia Campos1-1/+1
2010-06-080.14.0poppler-0.14.0Albert Astals Cid1-2/+2
2010-05-250.13.4poppler-0.13.4Albert Astals Cid1-1/+1
2010-04-240.13.3poppler-0.13.3Albert Astals Cid1-1/+1
2010-04-14update XOPEN_SOURCE to 600 in non standard compile optionsAlbert Astals Cid1-1/+1
it seems helps compiling on some BSD
2010-04-05Add HTTP support using libcurlHib Eris1-0/+16
With libcurl, poppler can handle documents over http.
2010-03-27poppler 0.13.2poppler-0.13.2Albert Astals Cid1-1/+1
2010-02-28poppler 0.13.1poppler-0.13.1Albert Astals Cid1-1/+1
2010-02-22[cairo] Use CAIRO_VERSION macros to check whether blend modes are availableCarlos Garcia Campos1-24/+0
2010-02-21Merge remote branch 'origin/cpp-frontend'Pino Toscano1-1/+26
* origin/cpp-frontend: (34 commits) [cpp/tests] poppler-dump: show a string for the font type [cpp/tests] poppler-dump: show the orientation of the pages [cpp/tests] poppler-dump: a bit less output in permissions lines [cpp/tests] poppler-dump: add --show-all to show all the information [cpp] use iconv for the utf8 <-> utf16 conversions [cpp] add the build system stuff for iconv, mandatory for cpp [cpp] fixup unicode GooString <-> ustring conversions [cpp] fix installation of poppler-version.h with autotools and builddir != srcdir simplify [cpp/tests] add a simple poppler-dump test [cpp] use the correct index (instead of an uninitialized variable) [cpp] properly delete the children of a toc item [cpp] actually implement toc::root() [cpp] fix the reference to the vector data [cpp] fix the reference to the vector data [cpp] add destructor for 'rectangle' [cpp] add out stream operators for rect and rectf [cpp] add namespace to namespace functiond to link properly [cpp] add default empty parameters for the passwords of the document loading functions [cpp] add "human friendly" output representation for byte_array ... Conflicts: config.h.cmake
2010-02-19use pkgconfig to detect libpng on autotools tooHib Eris1-4/+8
2010-02-16make the descriptions specify they refer to the Splash backendPino Toscano1-2/+2
2010-01-25poppler 0.13.0Albert Astals Cid1-1/+1
2010-01-24[glib] Make glib frontend unconditionally use cairo output deviceCarlos Garcia Campos1-34/+40
Splash support has been removed.
2010-01-13Make poppler (optionally) relocatable on WindowsHib Eris1-0/+26
2010-01-13Make fontconfig optional with mingw compilerHib Eris1-1/+38
2010-01-12Add the possibility of using float for splash variables instead of doubleAlbert Astals Cid1-1/+9
Based on a patch by Marius Vollmer marius.vollmer@nokia.com See bug 25578 for more info
2010-01-07[tests] Bump GTK+ requirements to 2.14Carlos Garcia Campos1-2/+2
Fixes bug #22090.
2010-01-07Bump glib requirements to 2.18Carlos Garcia Campos1-1/+1
2010-01-04Require Qt 4.4Albert Astals Cid1-4/+4
This updates the requirement to real requirement
2010-01-02enable AM_SILENT_RULES by defaultAdrian Johnson1-1/+1
2009-12-30[cpp] add the build system stuff for iconv, mandatory for cppPino Toscano1-0/+6
2009-12-17[cpp/tests] add a simple poppler-dump testPino Toscano1-0/+1
this small test executable can dump various features of the document, like the general info, permissions, metadata, toc, fonts, embedded files, pages, etc also add the necessary autotools+cmake machinery to compile it
2009-12-14[cpp] add a version header+functionsPino Toscano1-0/+2
this way, it is possible to get (either at build time and at runtime) the version of the current poppler-cpp library poppler-config.h is generated by the build system (autotools or cmake) with the correct version information
2009-12-13[cpp] add the pkg-config stuffPino Toscano1-1/+2
2009-12-13[cpp] add the autotools buildsystem for itPino Toscano1-0/+15
2009-11-20Check for openjpeg in the C++ part as it uses bool in the headerAlbert Astals Cid1-31/+30
Bug 25103
2009-11-17i didn't want to commit thisAlbert Astals Cid1-29/+31
2009-11-17do not use setAttribute with doublesAlbert Astals Cid1-31/+29
it is evil and locale dependant, we do NOT want that so use QString::number
2009-11-09[glib-demo] Explicitely add gio as dependency for GTK+ testsCarlos Garcia Campos1-2/+2
2009-10-09add -ansi flag to default warningsAlbert Astals Cid1-1/+1
2009-10-09Add -Wnon-virtual-dtor flagAlbert Astals Cid1-1/+1
2009-09-26Patch to make poppler work on CygwinYaakov Selkowitz1-0/+3
Bug 4195
2009-09-09poppler 0.12.0poppler-0.12.0Albert Astals Cid1-2/+2
2009-08-25Support AM_SILENT_RULESChristian Persch1-0/+1
When using automake 1.11, should support silent build rules.
2009-08-180.11.3poppler-0.11.3Albert Astals Cid1-1/+1
2009-08-010.11.2poppler-0.11.2Albert Astals Cid1-1/+1
2009-07-31add the overloaded virtual warning also the autotools based buildAlbert Astals Cid1-1/+1
2009-07-31[cairo] Implement blend mdoes in cairo backendCarlos Garcia Campos1-0/+27
It requires cairo from git master to work at the moment. Fixes bugs #22384, #12979, #13603, #17919, #22255
2009-07-30Revert "Remove unneeded files from repo"Carlos Garcia Campos1-1/+1
This reverts commit 4cc9dee35e03d7b295a476f937ec0f2c43bb6592. See bug #22697.
2009-07-01[test] Use gtkbuilder rather than libgladeSebastien Bacher1-2/+2
Fixes bug #21673
2009-06-190.11.1poppler-0.11.1Albert Astals Cid1-1/+1