Sfoglia il codice sorgente

Fix compilation issue with Microsoft Visual Studio 2008

Reported by Allan Cornet.
Stéphane Raimbault 14 anni fa
parent
commit
3fb246237d
9 ha cambiato i file con 35 aggiunte e 4 eliminazioni
  1. 3 0
      README.rst
  2. 4 0
      src/modbus-data.c
  3. 8 3
      src/modbus-private.h
  4. 4 0
      src/modbus-rtu-private.h
  5. 2 0
      src/modbus-rtu.c
  6. 2 0
      src/modbus-tcp.c
  7. 2 0
      src/modbus.c
  8. 5 0
      src/modbus.h
  9. 5 1
      tests/unit-test.h

+ 3 - 0
README.rst

@@ -26,6 +26,9 @@ Installation
 
 The shell commands are ``./autogen.sh; ./configure; make; make install``.
 
+If you want to compile with Microsoft Visual Studio, you need to install
+http://code.google.com/p/msinttypes/ to fill the absence of stdint.h.
+
 Testing
 -------
 

+ 4 - 0
src/modbus-data.c

@@ -16,7 +16,11 @@
  */
 
 #include <stdlib.h>
+#ifndef _MSC_VER
 #include <stdint.h>
+#else
+#include "stdint.h"
+#endif
 #include <string.h>
 #include <assert.h>
 #include <netinet/in.h>

+ 8 - 3
src/modbus-private.h

@@ -18,11 +18,16 @@
 #ifndef _MODBUS_PRIVATE_H_
 #define _MODBUS_PRIVATE_H_
 
-#include <sys/time.h>
+#ifndef _MSC_VER
+# include <stdint.h>
+# include <sys/time.h>
+#else
+# include "stdint.h"
+# include <time.h>
+#endif
 #include <sys/types.h>
-#include <stdint.h>
-
 #include <config.h>
+
 #include "modbus.h"
 
 MODBUS_BEGIN_DECLS

+ 4 - 0
src/modbus-rtu-private.h

@@ -18,7 +18,11 @@
 #ifndef _MODBUS_RTU_PRIVATE_H_
 #define _MODBUS_RTU_PRIVATE_H_
 
+#ifndef _MSC_VER
 #include <stdint.h>
+#else
+#include "stdint.h"
+#endif
 
 #if defined(_WIN32)
 #include <windows.h>

+ 2 - 0
src/modbus-rtu.c

@@ -20,7 +20,9 @@
 #include <errno.h>
 #include <fcntl.h>
 #include <string.h>
+#ifndef _MSC_VER
 #include <unistd.h>
+#endif
 #include <assert.h>
 
 #include "modbus-private.h"

+ 2 - 0
src/modbus-tcp.c

@@ -19,7 +19,9 @@
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
+#ifndef _MSC_VER
 #include <unistd.h>
+#endif
 #include <signal.h>
 #include <sys/types.h>
 

+ 2 - 0
src/modbus.c

@@ -22,7 +22,9 @@
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
+#ifndef _MSC_VER
 #include <unistd.h>
+#endif
 #include <errno.h>
 #include <limits.h>
 

+ 5 - 0
src/modbus.h

@@ -23,8 +23,13 @@
 #include <sys/param.h>
 #endif
 
+#ifndef _MSC_VER
 #include <stdint.h>
 #include <sys/time.h>
+#else
+#include "stdint.h"
+#include <time.h>
+#endif
 
 #include "modbus-version.h"
 

+ 5 - 1
tests/unit-test.h

@@ -24,7 +24,11 @@
 #include <inttypes.h>
 #endif
 #ifdef HAVE_STDINT_H
-#include <stdint.h>
+# ifndef _MSC_VER
+# include <stdint.h>
+# else
+# include "stdint.h"
+# endif
 #endif
 
 #define SERVER_ID 17