From 667bf736370b1d632f6ff99ce32bdcd7f0de9b3f Mon Sep 17 00:00:00 2001 From: om Date: Thu, 10 Aug 2006 15:28:31 +0000 Subject: [PATCH] #define IS_MINGW on..MinGW (*shock*) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4836 e03df62e-2008-0410-955e-edbf42e46eb7 --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index dc500ca8e..ea4314842 100755 --- a/configure +++ b/configure @@ -1023,6 +1023,9 @@ EOF print FILEHANDLE "#define IS_CYGWIN\n"; print FILEHANDLE "#ifndef FD_SETSIZE\n#define FD_SETSIZE 1024\n#endif\n"; } + if ($config{OSNAME} eq "MINGW32") { + print FILEHANDLE "#define IS_MINGW\n"; + } if ($config{OSNAME} eq "CYG-STATIC") { print FILEHANDLE "#ifndef FD_SETSIZE\n#define FD_SETSIZE 1024\n#endif\n"; }