Uses preprocessor define WIN32 instead of WINDOWS to build code
[yaz-moved-to-github.git] / include / yconfig.h
index 3fa446b..8546f31 100644 (file)
@@ -5,17 +5,13 @@
 
 #ifndef _VMS_
 
-#ifdef WINDOWS
+#ifdef WIN32
 
 #ifdef YNETINCLUDE
 #include <winsock.h>
 #endif
 
-#else /* #ifdef WINDOWS */
-/*
- * Standard Unix headers
- */
-
+#else /* #ifdef WIN32 */
 #include <sys/types.h>
 #include <sys/time.h>
 #include <sys/wait.h>
 #include <sys/select.h>
 #endif
 
+#ifndef O_BINARY
+#define O_BINARY 0
+#endif
+
 #endif
 #endif /* ifndef _VMS_ */
 
-#include <xmalloc.h>
+#ifndef YAZ_EXPORT
+#ifdef WIN32
+#define YAZ_EXPORT __declspec(dllexport)
+#else
+#define YAZ_EXPORT
+#endif
+#endif
 
-#ifdef WINDOWS
+#ifdef WIN32
 #define MDF
 #else
 #ifndef MDF