Changeset: 46cd3e07d2af for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=46cd3e07d2af
Modified Files:
        configure.ag
Branch: Jan2014
Log Message:

configure.ag: do not overwrite defaults if --with-* are not provided

affects only --with-sphinxclient & --with-mseed,
but even there "auto" was overwritten with "auto",
hence, other than cleaning up the code, this check-in
should have no effect


diffs (21 lines):

diff --git a/configure.ag b/configure.ag
--- a/configure.ag
+++ b/configure.ag
@@ -2234,7 +2234,7 @@ org_have_sphinxclient="auto"
 have_sphinxclient=$org_have_sphinxclient
 AC_ARG_WITH(sphinxclient,
     AS_HELP_STRING([--with-sphinxclient=DIR],[sphinxclient library is 
installed in DIR]),
-    [have_sphinxclient="$withval"], [have_sphinxclient="auto"])
+    [have_sphinxclient="$withval"])
 if test "x$have_sphinxclient" != xno; then
        case "$have_sphinxclient" in
        auto|yes)
@@ -2365,7 +2365,7 @@ org_have_mseed="auto"
 have_mseed=$org_have_mseed
 AC_ARG_WITH(mseed,
     AS_HELP_STRING([--with-mseed=DIR],[mseed library is installed in DIR]),
-    [have_mseed="$withval"], [have_mseed="auto"])
+    [have_mseed="$withval"])
 if test "x$have_mseed" != xno; then
 
        case "$have_mseed" in
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to