summaryrefslogtreecommitdiff
path: root/ConfigureChecks.cmake
AgeCommit message (Collapse)AuthorFilesLines
2019-01-15Fix fseeko configure check on Android for API level < 24Volker Krause1-1/+10
The availability depends on the _FILE_OFFSET_BITS define, which is set in config.h. So we need to have this during the configure check as well, to test under the same conditions.
2018-10-01Put (optional) usage of codecvt behind a configure check s.t. we at least ↵Adam Reichold1-0/+2
compile even if we do not properly handle the unicode page label.
2018-09-27Use the C++ standard library facilities for thread-safe random number ↵Adam Reichold1-1/+0
generation avoiding the need for explicit configure checks.
2017-10-21Move strtok_r to goo/glibcAdrian Johnson1-0/+1
Move strtok_r out of poppler-config.h as it is not used in any header files Move strtok_r.cpp to goo/glibc_strtok_r.cc to keep it with the other emulated glibc functions. But keep it in a separate file due to the different license.
2017-10-21Remove unused macrosAdrian Johnson1-6/+0
The jpeg.h HAVE_BOOLEAN is only required if the application defines type 'boolean' to prevent jpeg.h from redefining it.
2017-10-21c++11 has <cstdint> so we can drop the stdint.h checks and emulationAdrian Johnson1-1/+0
2016-06-06glib: return date in UTC instead of local timeAdrian Johnson1-0/+1
Bug 94173
2013-04-14Merge remote-tracking branch 'origin/poppler-0.22'Albert Astals Cid1-0/+2
2013-04-14Check for strcpy_s() and strcat_s() at configure timeHib Eris1-0/+2
It is better to test for functions than to hardcode exceptions for specific compilers. This fixes compiling poppler with the latest mingw-w64 compiler which has strcpy_s() and strcat_s() build in. Bug #63459
2013-04-05Add a GooFile class to encapsulate file read access using offsetsAdam Reichold1-0/+2
Bug #62735
2012-09-06Added goo/grandom.[cc|h] with POSIX implementationFabio D'Urso1-0/+1
2010-02-21Detect the need for nanosleep in solarisAlbert Astals Cid1-0/+5
Fixes bug 26650
2009-12-14[CMake] add configure check for sys/mman.h (as in autotools)Pino Toscano1-0/+1
2009-12-14[CMake] add configure check for fcntl.h (as in autotools)Pino Toscano1-0/+1
2009-12-14[CMake] add checks for gmtime_r and localtime_rPino Toscano1-0/+2
2008-01-30Introduce the CMake-based build system.Pino Toscano1-0/+47
Mostly works nicely as the autotools, and it mimics (almost) all the autotools behaviours. Copied some scripts from the KDE cmake scripts (BSD-licensed). TODO: gtk-doc.