Commit 2bbc98c8 by devttys0

Minor configure.ac changes.

parent 34665477
...@@ -1282,7 +1282,7 @@ Optional Features: ...@@ -1282,7 +1282,7 @@ Optional Features:
--disable-option-checking ignore unrecognized --enable/--with options --disable-option-checking ignore unrecognized --enable/--with options
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--disable-clibs do not build/install dependent c libraries --disable-clibs do not build/install any c libraries
--disable-libmagic do not build/install the bundled libmagic library --disable-libmagic do not build/install the bundled libmagic library
--disable-libfuzzy do not build/install the bundled libfuzzy library --disable-libfuzzy do not build/install the bundled libfuzzy library
...@@ -3335,13 +3335,12 @@ INSTALL_OPTIONS="-m644" ...@@ -3335,13 +3335,12 @@ INSTALL_OPTIONS="-m644"
if test "$prefix" != "NONE" if test "$prefix" != "NONE"
then then
echo "prefix: $prefix"
CONFIGURE_PREFIX="--prefix=$prefix" CONFIGURE_PREFIX="--prefix=$prefix"
else else
CONFIGURE_PREFIX="" CONFIGURE_PREFIX=""
fi fi
echo "prefix: $prefix"
if test "$(uname)" == "Darwin" if test "$(uname)" == "Darwin"
then then
SONAME="-install_name" SONAME="-install_name"
......
...@@ -13,7 +13,7 @@ AC_ARG_WITH([python], ...@@ -13,7 +13,7 @@ AC_ARG_WITH([python],
[PYTHON=python]) [PYTHON=python])
AC_ARG_ENABLE([clibs], AC_ARG_ENABLE([clibs],
[AS_HELP_STRING([--disable-clibs], [do not build/install dependent c libraries])], [AS_HELP_STRING([--disable-clibs], [do not build/install any c libraries])],
[BUILD_C_LIBS=0], [BUILD_C_LIBS=0],
[BUILD_C_LIBS=1]) [BUILD_C_LIBS=1])
...@@ -32,13 +32,12 @@ INSTALL_OPTIONS="-m644" ...@@ -32,13 +32,12 @@ INSTALL_OPTIONS="-m644"
if test "$prefix" != "NONE" if test "$prefix" != "NONE"
then then
echo "prefix: $prefix"
CONFIGURE_PREFIX="--prefix=$prefix" CONFIGURE_PREFIX="--prefix=$prefix"
else else
CONFIGURE_PREFIX="" CONFIGURE_PREFIX=""
fi fi
echo "prefix: $prefix"
if test "$(uname)" == "Darwin" if test "$(uname)" == "Darwin"
then then
SONAME="-install_name" SONAME="-install_name"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment