make --with-libs == --with-libraries

REL6_4
Marc G. Fournier 28 years ago
parent d8b0781b95
commit b5bd8c3f08
  1. 582
      src/configure
  2. 11
      src/configure.in

582
src/configure vendored

File diff suppressed because it is too large Load Diff

@ -162,6 +162,17 @@ if test "$INCLUDE_DIRS"; then
done
fi
AC_ARG_WITH(libs,
[ --with-libs=DIR site library directories for tk/tcl, etc in DIR],
[
case "$withval" in
"" | y | ye | yes | n | no)
AC_MSG_ERROR([*** You must supply an argument to the --with-libs option.])
;;
esac
LIBRARY_DIRS="$withval"
])
AC_ARG_WITH(libraries,
[ --with-libraries=DIR site library directories for tk/tcl, etc in DIR],
[

Loading…
Cancel
Save