minor fix

This commit is contained in:
fluxgen 2003-10-27 22:13:42 +00:00
parent 5cf421f809
commit 6b9b0e89e4

View file

@ -1,7 +1,7 @@
dnl Initialize autoconf and automake
AC_INIT(src/main.cc)
AC_PREREQ(2.52)
AM_INIT_AUTOMAKE(fluxbox,0.9.6pre5, no-define)
AM_INIT_AUTOMAKE(fluxbox,cvs-2003-10-26-2, no-define)
dnl Determine default prefix
test x$prefix = "xNONE" && prefix="$ac_default_prefix"
@ -233,19 +233,19 @@ AC_ARG_ENABLE(debug,
AC_SUBST(DEBUG)
CXXFLAGS="$CXXFLAGS $DEBUG"
dnl Check whether to include natural language support (i18n)
dnl Check whether to include native language support (i18n)
AC_MSG_CHECKING([whether to include NLS support])
AC_ARG_ENABLE(nls,
[ --enable-nls include natural language support [default=yes]],
[ --enable-nls include native language support [default=yes]],
if test x$enableval = "xyes"; then
AC_MSG_RESULT([yes])
AC_DEFINE(NLS, 1, "Natural language support")
AC_DEFINE(NLS, 1, "Native language support")
NLS="-DNLS"
else
AC_MSG_RESULT([no])
fi,
AC_MSG_RESULT([yes])
AC_DEFINE(NLS, 1, "Natural language support")
AC_DEFINE(NLS, 1, "Native language support")
NLS="-DNLS"
)
AC_SUBST(NLS)