This commit is contained in:
fluxgen 2002-01-10 14:21:31 +00:00
parent 6cb7a141a9
commit 2ea94bb322
2 changed files with 4 additions and 4 deletions

4
configure vendored
View file

@ -728,7 +728,7 @@ fi
PACKAGE=fluxbox PACKAGE=fluxbox
VERSION=0.1.6 VERSION=0.1.6-pre
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
@ -3285,7 +3285,7 @@ if test "${enable_debug+set}" = set; then
enableval="$enable_debug" enableval="$enable_debug"
if test x$enableval = "xyes"; then if test x$enableval = "xyes"; then
echo "$ac_t""yes" 1>&6 echo "$ac_t""yes" 1>&6
DEBUG="-DDEBUG -fno-inline" DEBUG="-DDEBUG"
else else
echo "$ac_t""no" 1>&6 echo "$ac_t""no" 1>&6
fi fi

View file

@ -1,7 +1,7 @@
dnl configure.in for Fluxbox - created from configure.in Blackbox 0.61.1 dnl configure.in for Fluxbox - created from configure.in Blackbox 0.61.1
dnl Initialize autoconf and automake dnl Initialize autoconf and automake
AC_INIT(src/main.cc) AC_INIT(src/main.cc)
AM_INIT_AUTOMAKE(fluxbox,0.1.6,no-define) AM_INIT_AUTOMAKE(fluxbox,0.1.6-pre,no-define)
dnl Determine default prefix dnl Determine default prefix
test x$prefix = "xNONE" && prefix="$ac_default_prefix" test x$prefix = "xNONE" && prefix="$ac_default_prefix"
@ -160,7 +160,7 @@ AC_ARG_ENABLE(debug,
[ --enable-debug include verbose debugging code [default=no]], [ --enable-debug include verbose debugging code [default=no]],
if test x$enableval = "xyes"; then if test x$enableval = "xyes"; then
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
DEBUG="-DDEBUG -fno-inline" DEBUG="-DDEBUG"
else else
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
fi, fi,