From e3a9531c918d2c6e668732d7338da69b6c7bf31f Mon Sep 17 00:00:00 2001 From: Geoffroy Vallee Date: Mon, 13 Feb 2017 16:49:56 -0500 Subject: [PATCH 1/2] Remove some debug that i forgot to remove in past commits. --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2ba6eeee..a80561e3 100644 --- a/configure.ac +++ b/configure.ac @@ -233,7 +233,6 @@ fi dnl If the user did not explicitly specify where ltdl headers are, we check dnl if the headers are available on the system by default. -echo "toto $with_ltdl_include $with_included_ltdl" if test x"$with_ltdl_include" = x"no" -a x"$with_included_ltdl" = x"no"; then AC_MSG_CHECKING([for ltld.h]) AC_CHECK_HEADER([ltdl.h], From 81d5719cd0c2db7c22e943cd22a9d9d21df6de78 Mon Sep 17 00:00:00 2001 From: Geoffroy Vallee Date: Mon, 13 Feb 2017 17:05:05 -0500 Subject: [PATCH 2/2] A little more code cleanup. --- configure.ac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index a80561e3..838a796f 100644 --- a/configure.ac +++ b/configure.ac @@ -198,7 +198,7 @@ fi dnl Allow the user to specify where ltdl is installed (cannot be used in dnl conjunction with --with-ltdl-include and/or --with-ltdl-lib -AC_ARG_WITH([installed_ltdl], +AC_ARG_WITH([included_ltdl], [AS_HELP_STRING([--with-included-ltdl=DIR], [use ltdl installed in DIR])]) if test -n "$with_included_ltdl"; then @@ -211,7 +211,6 @@ if test -n "$with_included_ltdl"; then if test -f "$with_included_ltdl/lib/libltdl.la"; then LIBLTDL="-L$with_included_ltdl/lib -lltdl" LDFLAGS="$LDFLAGS $LIBLTDL" - AC_MSG_RESULT([yep]) else with_included_ltdl=no AC_MSG_RESULT([no]) @@ -240,7 +239,6 @@ if test x"$with_ltdl_include" = x"no" -a x"$with_included_ltdl" = x"no"; then [AC_MSG_ERROR([ltdl headers not available]), exit 1]) fi -echo "titi" dnl If the user did not explicitly specify where the ltdl library is, we check dnl if the library is available on the system by default. Note that by checking