CC = gcc
STRIP = strip -s
-OPENSSL_PATH = ../../openssl-0.9.4
+OPENSSL_PATH = ../../openssl-0.9.5a
# We may need these someday
# PERL = perl
## Nothing more to do below this line!
INCLUDES = -I. -I.. -I../include
-CFLAGS = -g -O2 -DGLOBURL -DCURL_SEPARATORS
+CFLAGS = -g -O2
LDFLAGS =
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
/* This is now designed to have its own local setup.h */
#include "setup.h"
+#ifdef WIN32
+#include <winsock.h>
+#endif
+
#include "version.h"
#ifdef HAVE_IO_H /* typical win32 habit */
WSACleanup();
}
-static UrgError win32_init(void)
+static CURLcode win32_init(void)
{
WORD wVersionRequested;
WSADATA wsaData;