]> git.saurik.com Git - wxWidgets.git/blobdiff - src/tiff/port.h
Made db.h compile (removed this wxODBC_ONLY_FARWRD_XXXXXX),
[wxWidgets.git] / src / tiff / port.h
diff --git a/src/tiff/port.h b/src/tiff/port.h
new file mode 100644 (file)
index 0000000..3acbfb8
--- /dev/null
@@ -0,0 +1,61 @@
+/*
+ * Warning, this file was automatically created by the TIFF configure script
+ *   Actually, it has been modified to use wxWindows' values.
+ * VERSION:     v3.5.2
+ * DATE:        Son Nov 28 15:15:07 GMT 1999
+ * TARGET:      
+ * CCOMPILER:   
+ */
+#ifndef _PORT_
+#define _PORT_ 1
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "wx/setup.h"
+
+#include <sys/types.h>
+#define HOST_FILLORDER FILLORDER_LSB2MSB
+
+/* wxWindows defines WORDS_BIGENDIAN */
+#ifdef WORDS_BIGENDIAN
+#define HOST_BIGENDIAN 1
+#else
+#define HOST_BIGENDIAN 0
+#endif
+
+/* wxWindows defines its own reading and writing routines */
+/* #define HAVE_MMAP 1 */
+
+#include <stdio.h>
+#include <unistd.h>
+#include <string.h>
+#include <stdlib.h>
+#include <fcntl.h>
+
+typedef double dblparam_t;
+
+#ifdef __STRICT_ANSI__
+#define        INLINE  __inline__
+#else
+#define        INLINE  inline
+#endif
+
+#define GLOBALDATA(TYPE,NAME)  extern TYPE NAME
+
+/* wxWindows defines wxUSE_LIBJPEG */
+#if wxUSE_LIBJPEG
+#define JPEG_SUPPORT
+#endif
+
+/* wxWindows defines wxUSE_ZLIB */
+#if wxUSE_ZLIB
+#define ZIP_SUPPORT
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif