diff options
author | Igor Zlatkovic <igor@src.gnome.org> | 2002-11-14 17:49:20 +0000 |
---|---|---|
committer | Igor Zlatkovic <igor@src.gnome.org> | 2002-11-14 17:49:20 +0000 |
commit | 6a270ae34b1b3538204aa8ec4d2a77f717a94163 (patch) | |
tree | 2df998c29e6190db88477fe0ea769a8154fdc5cb /xsltproc/xsltproc.c | |
parent | 1393ce6b10ef28fb27be7e65d29f93364801d778 (diff) | |
download | libxslt-6a270ae34b1b3538204aa8ec4d2a77f717a94163.tar.gz libxslt-6a270ae34b1b3538204aa8ec4d2a77f717a94163.tar.bz2 libxslt-6a270ae34b1b3538204aa8ec4d2a77f717a94163.zip |
allowed stdarg for mingw
Diffstat (limited to 'xsltproc/xsltproc.c')
-rw-r--r-- | xsltproc/xsltproc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xsltproc/xsltproc.c b/xsltproc/xsltproc.c index 09b239ff..a4e2e90d 100644 --- a/xsltproc/xsltproc.c +++ b/xsltproc/xsltproc.c @@ -56,9 +56,8 @@ #include <libexslt/exsltconfig.h> #if defined(WIN32) && !defined (__CYGWIN__) -#ifdef _MSC_VER +#if defined(_MSC_VER) || defined(__MINGW32__) #include <winsock2.h> -#pragma comment(lib, "ws2_32.lib") #define gettimeofday(p1,p2) #define HAVE_TIME_H #include <time.h> |