Reported by Allan Cornet.
@@ -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
-------
@@ -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>
@@ -18,11 +18,16 @@
#ifndef _MODBUS_PRIVATE_H_
#define _MODBUS_PRIVATE_H_
-#include <sys/time.h>
+# include <stdint.h>
+# include <sys/time.h>
+# include "stdint.h"
+# include <time.h>
#include <sys/types.h>
-#include <stdint.h>
-
#include <config.h>
#include "modbus.h"
MODBUS_BEGIN_DECLS
@@ -18,7 +18,11 @@
#ifndef _MODBUS_RTU_PRIVATE_H_
#define _MODBUS_RTU_PRIVATE_H_
#if defined(_WIN32)
#include <windows.h>
@@ -20,7 +20,9 @@
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include "modbus-private.h"
@@ -19,7 +19,9 @@
#include <signal.h>
@@ -22,7 +22,9 @@
#include <stdio.h>
#include <limits.h>
@@ -23,8 +23,13 @@
#include <sys/param.h>
#endif
#include <sys/time.h>
+#include <time.h>
#include "modbus-version.h"
@@ -24,7 +24,11 @@
#include <inttypes.h>
#ifdef HAVE_STDINT_H
+# ifndef _MSC_VER
+# else
+# endif
#define SERVER_ID 17