![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/emscripten/tests/poppler/poppler/ |
Upload File : |
//================================================= -*- mode: c++ -*- ==== // // poppler-config.h // // Copyright 1996-2004 Glyph & Cog, LLC // //======================================================================== #ifndef POPPLER_CONFIG_H #define POPPLER_CONFIG_H // We duplicate some of the config.h #define's here since they are // used in some of the header files we install. The #ifndef/#endif // around #undef look odd, but it's to silence warnings about // redefining those symbols. /* Enable multithreading support. */ #ifndef MULTITHREADED #cmakedefine MULTITHREADED 1 #endif /* Use fixedpoint. */ #ifndef USE_FIXEDPOINT #cmakedefine USE_FIXEDPOINT 1 #endif /* Include support for OPI comments. */ #ifndef OPI_SUPPORT #cmakedefine OPI_SUPPORT 1 #endif /* Enable word list support. */ #ifndef TEXTOUT_WORD_LIST #cmakedefine TEXTOUT_WORD_LIST 1 #endif /* Use fontconfig font configuration backend */ #ifndef WITH_FONTCONFIGURATION_FONTCONFIG #cmakedefine WITH_FONTCONFIGURATION_FONTCONFIG 1 #endif /* Use win32 font configuration backend */ #ifndef WITH_FONTCONFIGURATION_WIN32 #cmakedefine WITH_FONTCONFIGURATION_WIN32 1 #endif /* Support for curl is compiled in. */ #ifndef POPPLER_HAS_CURL_SUPPORT #cmakedefine POPPLER_HAS_CURL_SUPPORT 1 #endif // Also, there's a couple of preprocessor symbols in the header files // that are used but never defined: DISABLE_OUTLINE, DEBUG_MEM and //------------------------------------------------------------------------ // version //------------------------------------------------------------------------ // copyright notice #define popplerCopyright "Copyright 2005-2010 The Poppler Developers - http://poppler.freedesktop.org" #define xpdfCopyright "Copyright 1996-2004 Glyph & Cog, LLC" //------------------------------------------------------------------------ // popen //------------------------------------------------------------------------ #if defined(_MSC_VER) || defined(__BORLANDC__) #define popen _popen #define pclose _pclose #endif #if defined(VMS) || defined(VMCMS) || defined(DOS) || defined(OS2) || defined(__EMX__) || defined(_WIN32) || defined(__DJGPP__) || defined(MACOS) #define POPEN_READ_MODE "rb" #else #define POPEN_READ_MODE "r" #endif //------------------------------------------------------------------------ // Win32 stuff //------------------------------------------------------------------------ #if defined(_WIN32) && !defined(_MSC_VER) #include <windef.h> #else #define CDECL #endif #if defined(_WIN32) #ifdef _MSC_VER #define strtok_r strtok_s #elif __MINGW32__ char * strtok_r (char *s, const char *delim, char **save_ptr); #endif #endif //------------------------------------------------------------------------ // Compiler //------------------------------------------------------------------------ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4) #define GCC_PRINTF_FORMAT(fmt_index, va_index) \ __attribute__((__format__(__printf__, fmt_index, va_index))) #else #define GCC_PRINTF_FORMAT(fmt_index, va_index) #endif #if defined(_MSC_VER) #define fmax(a, b) max(a, b) #define fmin(a, b) min(a, b) #endif #endif /* POPPLER_CONFIG_H */