mirror of
https://github.com/znc/znc.git
synced 2026-08-07 09:22:55 +02:00
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
This commit is contained in:
@@ -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
|
||||
|
||||
+4
-4
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user