Update of /cvsroot/monetdb/buildtools/conf
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv4302/conf
Modified Files:
MonetDB.m4
Log Message:
Work around a bug in older autoconfs that we use on most of our systems.
Because I use the latest autoconf myself I didn't notice this during
testing. Older autoconf leave IFS being changed to PATH_SEPARATOR if
there are no values in the given path variable. Since we called
AC_PATH_PROG with MPATH="" this bug was triggered, resulting in a
meltdown of configure because it couldn't find anything any more. We
now set a hopefully invalid path so we're a) sure monetdb-config isn't
found and b) our IFS is still restored via ac_save_IFS.
Index: MonetDB.m4
===================================================================
RCS file: /cvsroot/monetdb/buildtools/conf/MonetDB.m4,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- MonetDB.m4 5 Dec 2007 21:25:16 -0000 1.53
+++ MonetDB.m4 8 Dec 2007 13:03:36 -0000 1.54
@@ -242,7 +242,7 @@
if test "x$have_monetdb" != xno; then
case "$have_monetdb" in
yes|auto) MPATH="${MONETDB_PREFIX+$MONETDB_PREFIX/bin:}$PATH:$prefix/bin";;
- included) MPATH="";;
+ included) MPATH="/hopefully-not-there";;
*) MPATH="$withval/bin:$PATH";;
esac
AC_PATH_PROG(MONETDB_CONFIG,monetdb-config,,$MPATH)
@@ -314,7 +314,7 @@
if test "x$have_clients" != xno; then
case "$have_clients" in
yes|auto) MPATH="${CLIENTS_PREFIX+$CLIENTS_PREFIX/bin:}$PATH:$prefix/bin";;
- included) MPATH="";;
+ included) MPATH="/hopefully-not-there";;
*) MPATH="$withval/bin:$PATH";;
esac
AC_PATH_PROG(CLIENTS_CONFIG,monetdb-clients-config,,$MPATH)
@@ -389,7 +389,7 @@
if test "x$have_monetdb4" != xno; then
case "$have_monetdb4" in
yes|auto) MPATH="${MONETDB4_PREFIX+$MONETDB4_PREFIX/bin:}$PATH:$prefix/bin";;
- included) MPATH="";;
+ included) MPATH="/hopefully-not-there";;
*) MPATH="$withval/bin:$PATH";;
esac
AC_PATH_PROG(MONETDB4_CONFIG,monetdb4-config,,$MPATH)
@@ -477,7 +477,7 @@
if test "x$have_monetdb5" != xno; then
case "$have_monetdb5" in
yes|auto) MPATH="${MONETDB5_PREFIX+$MONETDB5_PREFIX/bin:}$PATH:$prefix/bin";;
- included) MPATH="";;
+ included) MPATH="/hopefully-not-there";;
*) MPATH="$withval/bin:$PATH";;
esac
AC_PATH_PROG(MONETDB5_CONFIG,monetdb5-config,,$MPATH)
-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins