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
This commit is contained in:
brain 2007-08-20 21:05:44 +00:00
parent 2a0f1441ef
commit 74f26a0375

14
configure vendored
View File

@ -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
{