summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2012-12-150.21.4 version increaseAlbert Astals Cid1-1/+1
2012-12-010.21.3poppler-0.21.3Albert Astals Cid1-1/+1
2012-12-01Merge commit 'b1dacd1e6ab00eb1976491eb2b45c76671011b38'Albert Astals Cid1-1/+1
2012-11-28Enable compiler warnings for C codeHib Eris1-1/+2
Compilation of glib/demo uses a C compiler, thus compiler warnings should be enabled in the CFLAGS variable.
2012-11-230.21.2poppler-0.21.2Albert Astals Cid1-1/+1
2012-11-090.21.1poppler-0.21.1Albert Astals Cid1-1/+1
2012-09-21Version increaseAlbert Astals Cid1-2/+2
2012-09-11Merge remote-tracking branch 'origin/poppler-0.20'Albert Astals Cid1-1/+1
2012-09-100.20.40.20.40.20.40.20.4poppler-0.20.4Albert Astals Cid1-1/+1
2012-09-08Merge remote-tracking branch 'origin/poppler-0.20'Albert Astals Cid1-1/+1
Conflicts: glib/poppler-document.cc poppler/PDFDoc.cc poppler/XRef.h utils/HtmlFonts.cc
2012-09-06Added goo/grandom.[cc|h] with POSIX implementationFabio D'Urso1-0/+1
2012-08-110.20.3poppler-0.20.3Albert Astals Cid1-1/+1
2012-07-19autoconf: Do not assume the shell is bash compatibleTorsten Kasch1-1/+1
Bug 52197
2012-07-19autoconf: Do not assume the shell is bash compatibleTorsten Kasch1-1/+1
Bug 52197
2012-07-100.20.2poppler-0.20.2Albert Astals Cid1-1/+1
2012-06-19Add the possibility of using lcms1 even if lcms2 is installedMaciej Mrozowski1-16/+15
2012-06-100.20.1poppler-0.20.1Albert Astals Cid1-1/+1
2012-05-19gtk-tests: Port to GTK+ 3.0Carlos Garcia Campos1-2/+2
2012-05-13glib: Add poppler_document_new_from_streamCarlos Garcia Campos1-5/+5
A PopplerInputStream has been added to handle GMemoryInputStream and GLocalFileInputStream, since we don't want to cache the contents in those cases. A PopplerCachedFileLoader has been added to handle all other cases.
2012-05-100.20.0poppler-0.20.0Albert Astals Cid1-2/+2
2012-04-270.19.4poppler-0.19.4Albert Astals Cid1-1/+1
2012-04-17Do not clear FREETYPE_CFLAGS, FREETYPE_LIBS before PKG_CHECK_MODULES()suzuki toshiya1-2/+3
Although configure --help says as if environmental variables FREETYPE_CFLAGS and FREETYPE_LIBS will overwrite the values obtained by pkg-config. But it is not. These help messages are automatically given by pkg-config macro (so I guess no poppler developer designed so intentionally). In current configure, FREETYPE_CFLAGS, FREETYPE_LIBS are cleared before PKG_CONFIG_MODULES(), like: dnl Check for freetype headers FREETYPE_LIBS= FREETYPE_CFLAGS= PKG_CHECK_MODULES(FREETYPE, freetype2, [freetype_pkgconfig=yes], [freetype_pkgconfig=no]) if test "x$freetype_pkgconfig" = "xyes"; then AC_DEFINE(HAVE_FREETYPE_H, 1, [Have FreeType2 include files]) else AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no) [...] Checking the history why these values are cleared, it seems that the initial revision of poppler did not use pkg-config to detect FREETYPE_CFLAGS, _LIBS. At that time, only freetype-config is used. In later, when PKG_CHECK_MODULES is introduced, it was accidentally introduced AFTER the clearning of FREETYPE_CFLAGS,_LIBS. As a result, the inconsistency between "configure --help" and what configure does really. I propose to move the clearance of FREETYPE_CFLAGS,_LIBS just before AC_PATH_PROG, to make PKG_CHECK_MODULES catch the environmental values.
2012-04-17Do not append "-ansi" to CXXFLAG, if "-std=XXX" is already specified.suzuki toshiya1-1/+7
SplashOutputDev.cc uses isfinite() function (defined by math.h). isfinite() was standardized in C99, and imported to C++0x in later. In QNX header file system, isfinite() is disabled by default, the definition of __STDC_VERSION__ > 199901 is required to enable it. In the case of GCC, "-std=c99" (for C) or "-std=gnu++0x" (for C++) is expected. But, current configure of poppler appends "-ansi" flag for CXXFLAGS, if the compiler is known to be GNU. "-ansi" is C89 or C++98, so isfinite() is unavailable. I propose a patch NOT to "-ansi" flag, if CXXFLAGS includes "-std=XXX" already.
2012-04-120.19.3poppler-0.19.3Albert Astals Cid1-1/+1
2012-03-29Increase versionpoppler-0.19.2Albert Astals Cid1-1/+1
2012-03-29define POPPLER_VERSION as C stringPeter Breitenlohner1-1/+1
Signed-off-by: Peter Breitenlohner <peb@mppmu.mpg.de>
2012-03-29Fix help messageHib Eris1-2/+2
Partial credit goes to suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
2012-03-28Add quotessuzuki toshiya1-2/+2
this is quite small fix. In poppler's configure, basically the shell variables are not enclosed, and not quoted, aslike if test x$use_glib = x; then This syntax make the test command confused when use_glib is multi-word value, as, "no (required cairo output)". In such case, test cannot know how to evaluate the token "no" "(required" "cairo", so some "syntax error" messages are given. Thus, quoting of the variable would be safer.
2012-03-28Workaround Windows problem with libjpegAlbert Astals Cid1-0/+42
In libjpeg6b, there is a type definition conflict issue in jmorecfg.h. jmorecfg.h typedefs INT16 as short, INT32 as long. The latter conflict with basetsd.h of Microsoft Windows SDK or MinGW that typedefs INT32 as int. basetsd.h is included by windows.h, so, if the users work with ANSI C features only, the conflict does not appear, it would be the background why such fundamental error has been preserved. Anyway, jmorecfg.h designer was aware about the conflict with X11 headers (Xmd.h defines INT16, INT32, etc), so if we pretend as if Xmd.h were included (by defining XMD_H), this issue can be bypassed. Attached patch checks the conflict, then, if there is a conflict, tries XMD_H trick, and uses it if it works. If jmorecfg.h or basetsd.h was manually fixed to prevent this issue, this trick is not used.
2012-03-28Configure improvements for libs in non default pathssuzuki toshiya1-6/+44
evaluate pkg-config-like environmental variables like LIBJPEG_CFLAGS, LIBJPEG_LIBS, LIBTIFF_CFLAGS and LIBTIFF_LIBS in configuration.
2012-03-15Increase version and sonamesAlbert Astals Cid1-1/+1
2012-03-01Increase versionspoppler-0.19.0Albert Astals Cid1-1/+1
2012-02-25autoconf: PKG_CHECK_EXISTS should not have the variable prefix in the first ↵Adrian Johnson1-2/+2
argument
2012-02-24autoconf: replace openjpeg compile test with a version testAdrian Johnson1-8/+3
Now that openjpeg 1.5 is released and supports pkg-config the compile test can be replaced with a pkg-config version check.
2012-02-24autoconf: Use pkgconfig to check for libopenjpegAdrian Johnson1-11/+17
and if not found fallback to using AC_CHECK_LIB/AC_CHECK_HEADERS openjpeg >= 1.4 installs a pkgconfig file Bug 21789
2012-02-20Add support for lcms2Koji Otani1-2/+22
2012-02-14Add a configuration option for the test data dirHib Eris1-0/+42
This makes 'make distcheck' run succesfully.
2012-02-14Merge remote-tracking branch 'origin/xpdf303merge'Albert Astals Cid1-1/+1
Conflicts: utils/HtmlOutputDev.cc utils/HtmlOutputDev.h
2012-02-12Improve moc detection when cross compilingHib Eris1-2/+4
2012-02-06Merge branch 'master' into xpdf303mergeAlbert Astals Cid1-10/+41
Conflicts: poppler/CairoOutputDev.cc poppler/CairoOutputDev.h poppler/FontInfo.cc poppler/GfxFont.cc poppler/GfxState.cc poppler/GlobalParams.cc poppler/GlobalParams.h poppler/Lexer.cc
2012-01-27Set OPJ_DPARAMETERS_IGNORE_PCLR_CMAP_CDEF_FLAG if you have itAlbert Astals Cid1-0/+8
Fixes/workarounds bug 43414 with openjpeg 1.5 (unreleased) (cherry picked from commit de6415af1a39ec7dfa4f149c6c5e311b86352cec)
2012-01-18configure.ac: print the glib version required if not foundAdrian Johnson1-2/+8
2012-01-13configure.ac: print the cairo version required if not foundAdrian Johnson1-2/+7
Bug 44619
2011-12-23autoconf: Check for cairo-ft and other cairo backendsAdrian Johnson1-2/+12
so that CAIRO_LIBS includes the freetype dependency and pdftocairo includes the dependencies for optional cairo backends. Bug 43969
2011-11-01Fix pkg-config filesRex Dieter1-0/+1
We were using $FOO_REQUIRED instead of @FOO_REQUIRED@
2011-10-26Expose POPPLER_VERSION in poppler-config.hAlbert Astals Cid1-0/+3
2011-10-16Remove poppler-cairo dependency from poppler-glib pkg-config fileCarlos Garcia Campos1-2/+0
poppler-glib links to poppler-cairo statically, so it doesn'tm depend on the dynamic library.
2011-09-270.18.0poppler-0.18.0Albert Astals Cid1-2/+2
2011-09-18Merge branch 'master' into xpdf303mergeCarlos Garcia Campos1-1/+1
2011-09-120.17.4poppler-0.17.4Albert Astals Cid1-1/+1