diff options
author | Calvin Morrison <calvin@pobox.com> | 2023-04-05 14:13:39 -0400 |
---|---|---|
committer | Calvin Morrison <calvin@pobox.com> | 2023-04-05 14:13:39 -0400 |
commit | 835e373b3eeaabcd0621ed6798ab500f37982fae (patch) | |
tree | dfa16b0e2e1b4956b38f693220eac4e607802133 /aconf.h |
Diffstat (limited to 'aconf.h')
-rw-r--r-- | aconf.h | 124 |
1 files changed, 124 insertions, 0 deletions
@@ -0,0 +1,124 @@ +/* + * aconf.h + * + * This file is modified by cmake. + * + * Copyright 2002-2015 Glyph & Cog, LLC + */ + +#ifndef ACONF_H +#define ACONF_H + +#include <aconf2.h> + +/* + * Use A4 paper size instead of Letter for PostScript output. + */ +/* #undef A4_PAPER */ + +/* + * Do not allow text selection. + */ +/* #undef NO_TEXT_SELECT */ + +/* + * Include support for OPI comments. + */ +#define OPI_SUPPORT 0 + +/* + * Enable multithreading support. + */ +#define MULTITHREADED 1 + +/* + * Enable C++ exceptions. + */ +#define USE_EXCEPTIONS 1 + +/* + * Use fixed point (instead of floating point) arithmetic. + */ +#define USE_FIXEDPOINT 0 + +/* + * Enable support for CMYK output. + */ +#define SPLASH_CMYK 0 + +/* + * Enable support for DeviceN output. + */ +#define SPLASH_DEVICEN 0 + +/* + * Enable support for highlighted regions. + */ +/* #undef HIGHLIGHTED_REGIONS */ + +/* + * Full path for the system-wide xpdfrc file. + */ +/* #undef SYSTEM_XPDFRC */ + +/* + * Directory to use for the variable in the xpdfrc config + * file. + */ +/* #undef XPDFRC_DATADIR */ + +/* + * Various include files and functions. + */ +#define HAVE_MKSTEMP 1 +#define HAVE_MKSTEMPS 1 +#define HAVE_POPEN +#define HAVE_STD_SORT 1 +#define HAVE_FSEEKO 1 +#define HAVE_FSEEK64 0 +#define HAVE_FSEEKI64 0 +#define _FILE_OFFSET_BITS 64 +#define _LARGE_FILES 1 +#define _LARGEFILE_SOURCE 1 + +/* + * This is defined if using FreeType 2. + */ +#define HAVE_FREETYPE_H 1 + +/* + * This is defined if using D-Type 4. + */ +#define HAVE_DTYPE4_H 0 + +/* + * This is defined if using libpaper. + */ +#define HAVE_PAPER_H 0 + +/* + * This is defined if using libfontconfig. + */ +#define HAVE_FONTCONFIG 1 + +/* + * Defined if the Splash library is avaiable. + */ +#define HAVE_SPLASH 1 + +/* + * Defined if using lcms2. + */ +#define HAVE_LCMS 0 + +/* + * Defined for evaluation mode. + */ +#define EVAL_MODE 0 + +/* + * Defined when building the closed source XpdfReader binary. + */ +#define BUILDING_XPDFREADER 0 + +#endif |