need path to znc dir for CXXflags

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@11 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
imaginos
2004-08-24 22:30:34 +00:00
parent 4c9a177316
commit 42bc0e8e3a
3 changed files with 4 additions and 4 deletions
Vendored
+1
View File
@@ -2757,6 +2757,7 @@ if test $ac_cv_lib_dl_dlopen = yes; then
fi
MODFLAGS=`echo $CXXFLAGS | sed 's/-rdynamic//g'`
MODFLAGS="$MODFLAGS -I`pwd`"
MODTARGET="modules"
appendLib -ldl
fi
+1
View File
@@ -53,6 +53,7 @@ fi
if test "$MODULES" = "yes"; then
AC_CHECK_LIB( dl, dlopen, appendCXX -D_MODULES -rdynamic,, )
MODFLAGS=`echo $CXXFLAGS | sed 's/-rdynamic//g'`
MODFLAGS="$MODFLAGS -I`pwd`"
MODTARGET="modules"
appendLib -ldl
fi
+2 -4
View File
@@ -22,14 +22,12 @@ if [ "$1" = "--libs" ]; then
fi
if [ "$1" = "--all" ]; then
for i in *; do
FILE="$FILE $i"
done
FILES=`ls`
else
FILES=$@
fi
for arg in "$FILES"
for arg in $FILES
do
if test -d $arg && test "$arg" != "CVS"; then
(cd $arg && make || exit 1)