From 2a0f1441efe2cc7a8387e68f474741d9c48572ba Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 20 Aug 2007 20:53:24 +0000 Subject: Improve this a lot git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7783 e03df62e-2008-0410-955e-edbf42e46eb7 --- configure | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/configure b/configure index 3074c8e28..90bfcd0b5 100755 --- a/configure +++ b/configure @@ -549,6 +549,28 @@ if (($config{HAS_OPENSSL}) && (($config{HAS_OPENSSL} >= 0.8) || ($config{HAS_OPE $config{HAS_OPENSSL} = "n"; } +printf "Checking if you are running an ancient, unsupported OS... "; +if ($config{OSNAME} =~ /FreeBSD/i) +{ + $version = `uname -r`; + if ($version =~ /^4\./) + { + # ICKY ICKY ICK, FREEBSD 4.x! GET AN UPGRADE! + $config{CRAQ} = "-L/usr/local/lib -lgnugetopt -DHAVE_DECL_GETOPT=1"; + print "yes\n"; + } + else + { + $config{CRAQ} = " "; + print "no ($version)\n"; + } +} +else +{ + $config{CRAQ} = " "; + print "no ($config{OSNAME})\n"; +} + ################################################################################ # BEGIN INTERACTIVE PART # ################################################################################ @@ -1312,16 +1334,7 @@ sub write_dynamic_makefile { $se = "socketengine_ports"; } - if ($config{OSNAME} =~ /freebsd/i) - { - print "Ick, you are running FreeBSD 4.x. Enabling workaround. Get an upgrade.\n"; - $version = `uname -r`; - if ($version =~ /^4\./) - { - # ICKY ICKY ICK, FREEBSD 4.x! GET AN UPGRADE! - $freebsd4libs = "-L/usr/local/lib -lgnugetopt -DHAVE_DECL_GETOPT=1"; - } - } + $freebsd4libs = $config{CRAQ}; open(FH,">src/Makefile") or die("Could not write src/Makefile"); print FH <