Check-in [e7cf189265]
Not logged in
Overview

SHA1 Hash:e7cf1892653be06d66069aef09c8c882852d6f2e
Date: 2007-10-04 17:37:00
User: mjanssen
Comment:Changes to cgi.c in check-in e63a9fd9d0 broke the windows build because of undefined socklen_t. Added the appropriate include file
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/cgi.c from [5b9875dd08] to [3772dc1166].

@@ -30,10 +30,11 @@
 #include "config.h"
 #ifdef __MINGW32__
 #  include <windows.h>           /* for Sleep once server works again */
 #  include <winsock2.h>          /* socket operations */
 #  define sleep Sleep            /* windows does not have sleep, but Sleep */
+#  include <ws2tcpip.h>
 #else
 #  include <sys/socket.h>
 #  include <netinet/in.h>
 #  include <arpa/inet.h>
 #  include <sys/times.h>