From: Patrick M. <ume...@us...> - 2007-06-18 19:30:38
|
Update of /cvsroot/libsnet/libsnet In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv28541 Modified Files: aclocal.m4 configure Log Message: Using single '=' to be more portable, specifically for HP/UX. Thanks Jim Foraker for the patch. [ PATCH 1733630 ] Index: aclocal.m4 =================================================================== RCS file: /cvsroot/libsnet/libsnet/aclocal.m4,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** aclocal.m4 31 May 2007 17:44:39 -0000 1.11 --- aclocal.m4 18 Jun 2007 19:30:34 -0000 1.12 *************** *** 95,99 **** fi done ! if test x_$found_zlib == x_yes; then if test "$dir" != "/usr"; then CPPFLAGS="$CPPFLAGS -I$zlibdir/include"; --- 95,99 ---- fi done ! if test x_$found_zlib = x_yes; then if test "$dir" != "/usr"; then CPPFLAGS="$CPPFLAGS -I$zlibdir/include"; *************** *** 148,152 **** fi done ! if test x_$found_sasl == x_yes; then AC_DEFINE(HAVE_LIBSASL) LIBS="$LIBS -lsasl2"; --- 148,152 ---- fi done ! if test x_$found_sasl = x_yes; then AC_DEFINE(HAVE_LIBSASL) LIBS="$LIBS -lsasl2"; Index: configure =================================================================== RCS file: /cvsroot/libsnet/libsnet/configure,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** configure 31 May 2007 17:44:39 -0000 1.18 --- configure 18 Jun 2007 19:30:34 -0000 1.19 *************** *** 2550,2554 **** fi done ! if test x_$found_zlib == x_yes; then if test "$dir" != "/usr"; then CPPFLAGS="$CPPFLAGS -I$zlibdir/include"; --- 2550,2554 ---- fi done ! if test x_$found_zlib = x_yes; then if test "$dir" != "/usr"; then CPPFLAGS="$CPPFLAGS -I$zlibdir/include"; *************** *** 2829,2833 **** fi done ! if test x_$found_sasl == x_yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_LIBSASL 1 --- 2829,2833 ---- fi done ! if test x_$found_sasl = x_yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_LIBSASL 1 |