From: om Date: Thu, 10 Aug 2006 15:06:43 +0000 (+0000) Subject: Don't use -fPIC on MinGW platforms X-Git-Tag: v2.0.23~7467 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=0056f9a75941c1c360a3dd5dc63b6a704ae6a995;p=user%2Fhenk%2Fcode%2Finspircd.git Don't use -fPIC on MinGW platforms git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4835 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/configure b/configure index aa004f4f2..dc500ca8e 100755 --- a/configure +++ b/configure @@ -909,7 +909,9 @@ sub getosflags { $config{STATIC_LINK} = "yes"; } } - if ($config{OSNAME} =~ /SunOS/) { + + if ($config{OSNAME} =~ /SunOS/) + { # solaris/sunos needs these # socket = bsd sockets api # nsl = dns stuff @@ -917,6 +919,12 @@ sub getosflags { # resolv = inet_aton only (why isnt this in nsl?!) $config{LDLIBS} = $config{LDLIBS} . " -lsocket -lnsl -lrt -lresolv"; } + + if($config{OSNAME} eq "MINGW32") + { + # All code is position-independent on windows + $config{FLAGS} =~ s/-fPIC //; + } } sub is_dir {