Re-add --with-optim option to configure script.

pull/244/head
Michael R Sweet 6 years ago
parent 2304c06577
commit 01e2e50f17
No known key found for this signature in database
GPG Key ID: 999559A027815955
  1. 18
      configure
  2. 9
      configure.ac

18
configure vendored

@ -656,8 +656,8 @@ ac_ct_CC
CPPFLAGS
CFLAGS
CC
ARCHFLAGS
OPTIM
ARCHFLAGS
LDFLAGS
VERSION
host_os
@ -711,6 +711,7 @@ ac_user_opts='
enable_option_checking
with_ansi
with_archflags
with_optim
enable_debug
with_docdir
with_vsnprintf
@ -1351,6 +1352,7 @@ Optional Packages:
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-ansi set full ANSI C mode, default=no
--with-archflags set additional architecture flags, default=none
--with-optim set additional optimization flags, default=none
--with-docdir set directory for documentation, default=${prefix}/share/doc/mxml
--with-vsnprintf use vsnprintf emulation functions, default=auto
@ -2309,8 +2311,6 @@ CFLAGS="${CFLAGS:=}"
CXXFLAGS="${CXXFLAGS:=}"
LDFLAGS="${LDFLAGS:=}"
OPTIM=""
# Check whether --with-ansi was given.
@ -2331,10 +2331,20 @@ fi
# Check whether --with-optim was given.
if test "${with_optim+set}" = set; then :
withval=$with_optim; OPTIM="$withval"
else
OPTIM=""
fi
# Check whether --enable-debug was given.
if test "${enable_debug+set}" = set; then :
enableval=$enable_debug; if eval "test x$enable_debug = xyes"; then
OPTIM="-g"
OPTIM="$OPTIM -g"
fi
fi

@ -41,8 +41,6 @@ CFLAGS="${CFLAGS:=}"
CXXFLAGS="${CXXFLAGS:=}"
LDFLAGS="${LDFLAGS:=}"
AC_SUBST(LDFLAGS)
OPTIM=""
AC_SUBST(OPTIM)
AC_ARG_WITH(ansi, [ --with-ansi set full ANSI C mode, default=no],
use_ansi="$withval",
@ -53,9 +51,14 @@ AC_ARG_WITH(archflags, [ --with-archflags set additional architecture fl
ARCHFLAGS="")
AC_SUBST(ARCHFLAGS)
AC_ARG_WITH(optim, [ --with-optim set additional optimization flags, default=none],
OPTIM="$withval",
OPTIM="")
AC_SUBST(OPTIM)
AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging, default=no],
if eval "test x$enable_debug = xyes"; then
OPTIM="-g"
OPTIM="$OPTIM -g"
fi)
AC_ARG_WITH(docdir, [ --with-docdir set directory for documentation, default=${prefix}/share/doc/mxml],

Loading…
Cancel
Save