From 74f26a0375191ce239b0e3542fc73e57b5e6c291 Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 20 Aug 2007 21:05:44 +0000 Subject: Checks for libgnugetopt in /usr/local/lib before continuing git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7785 e03df62e-2008-0410-955e-edbf42e46eb7 --- configure | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 90bfcd0b5..bc81209d6 100755 --- a/configure +++ b/configure @@ -555,9 +555,17 @@ 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"; + $foundit = `ls -l /usr/local/lib/libgnugetopt* | wc -l`; + if ($foundit > 0) + { + # ICKY ICKY ICK, FREEBSD 4.x! GET AN UPGRADE! + $config{CRAQ} = "-L/usr/local/lib -lgnugetopt -DHAVE_DECL_GETOPT=1"; + print "yes\n"; + } + else + { + print "\n\nERROR: You require libgnugetopt (from ports or packages) to build InspIRCd on FreeBSD 4.11.\n"; + } } else { -- cgit v1.2.3