From d1de3746a8798631c83535903fa4d988f88e277b Mon Sep 17 00:00:00 2001 From: psychon Date: Sat, 14 Jul 2007 19:09:13 +0000 Subject: [PATCH] Fix bug reported by bnovc - configure failing on fbsd git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@813 726aef4b-f618-498e-8847-2d620e286838 --- configure | 8 ++++---- configure.in | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/configure b/configure index aa81eff0..d61de412 100755 --- a/configure +++ b/configure @@ -2408,7 +2408,7 @@ CXXFLAGS="-D_GNU_SOURCE" INCLUDES="" LIBS="" -function appendLib { +appendLib () { if test "$LIBS" != ""; then LIBS="$LIBS $*" else @@ -2416,7 +2416,7 @@ function appendLib { fi } -function appendInc { +appendInc () { if test "$INCLUDES" != ""; then INCLUDES="$INCLUDES $*" else @@ -2424,7 +2424,7 @@ function appendInc { fi } -function appendCXX { +appendCXX () { if test "$CXXFLAGS" != ""; then CXXFLAGS="$CXXFLAGS $*" else @@ -2432,7 +2432,7 @@ function appendCXX { fi } -function appendLD { +appendLD () { if test "$LDFLAGS" != ""; then LDFLAGS="$LDFLAGS $*" else diff --git a/configure.in b/configure.in index 3cf60fcb..7763c496 100644 --- a/configure.in +++ b/configure.in @@ -7,7 +7,7 @@ CXXFLAGS="-D_GNU_SOURCE" INCLUDES="" LIBS="" -function appendLib { +appendLib () { if test "$LIBS" != ""; then LIBS="$LIBS $*" else @@ -15,7 +15,7 @@ function appendLib { fi } -function appendInc { +appendInc () { if test "$INCLUDES" != ""; then INCLUDES="$INCLUDES $*" else @@ -23,7 +23,7 @@ function appendInc { fi } -function appendCXX { +appendCXX () { if test "$CXXFLAGS" != ""; then CXXFLAGS="$CXXFLAGS $*" else @@ -31,7 +31,7 @@ function appendCXX { fi } -function appendLD { +appendLD () { if test "$LDFLAGS" != ""; then LDFLAGS="$LDFLAGS $*" else