summaryrefslogtreecommitdiff
path: root/src/libjasper/jasper/jas_config.h
diff options
context:
space:
mode:
authorscuri <scuri>2008-10-17 06:10:15 +0000
committerscuri <scuri>2008-10-17 06:10:15 +0000
commit5a422aba704c375a307a902bafe658342e209906 (patch)
tree5005011e086bb863d8fb587ad3319bbec59b2447 /src/libjasper/jasper/jas_config.h
First commit - moving from LuaForge to SourceForge
Diffstat (limited to 'src/libjasper/jasper/jas_config.h')
-rw-r--r--src/libjasper/jasper/jas_config.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/libjasper/jasper/jas_config.h b/src/libjasper/jasper/jas_config.h
new file mode 100644
index 0000000..e58ed6d
--- /dev/null
+++ b/src/libjasper/jasper/jas_config.h
@@ -0,0 +1,32 @@
+/* IMLIB - jas_config.h for IM */
+
+/* Avoid problems due to multiple inclusion. */
+#ifndef JAS_CONFIG_H
+#define JAS_CONFIG_H
+
+/* This preprocessor symbol identifies the version of JasPer. */
+#define JAS_VERSION "1.900.1"
+
+#define HAVE_FCNTL_H 1
+#define HAVE_LIMITS_H 1
+#define HAVE_STDLIB_H 1
+#define HAVE_STDDEF_H 1
+#define HAVE_STRING_H 1
+#define HAVE_MEMORY_H 1
+#define HAVE_SYS_TYPES_H 1
+
+/* #define HAVE_UNISTD_H 1 (must control this in the makefile) */
+
+/* #define JAS_CONFIGURE 0 to include some definitions in "jas_types.h" ifdef WIN32 */
+
+#ifdef JAS_TYPES
+typedef unsigned long ulong;
+typedef unsigned char uchar;
+#endif
+
+#if !defined(WIN32) /* These will be defined in "jas_types.h" ifdef WIN32 */
+#define longlong long long
+#define ulonglong unsigned long long
+#endif
+
+#endif