aboutsummaryrefslogtreecommitdiff
path: root/aconf.h
diff options
context:
space:
mode:
authorCalvin Morrison <calvin@pobox.com>2023-04-05 14:13:39 -0400
committerCalvin Morrison <calvin@pobox.com>2023-04-05 14:13:39 -0400
commit835e373b3eeaabcd0621ed6798ab500f37982fae (patch)
treedfa16b0e2e1b4956b38f693220eac4e607802133 /aconf.h
xpdf-no-select-disableHEADmaster
Diffstat (limited to 'aconf.h')
-rw-r--r--aconf.h124
1 files changed, 124 insertions, 0 deletions
diff --git a/aconf.h b/aconf.h
new file mode 100644
index 0000000..9a2e7f7
--- /dev/null
+++ b/aconf.h
@@ -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