disabled nls as default until its fixed
This commit is contained in:
parent
868edbabf2
commit
c66c8ce138
1 changed files with 3 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
dnl Initialize autoconf and automake
|
||||
AC_INIT(src/main.cc)
|
||||
AC_PREREQ(2.52)
|
||||
AM_INIT_AUTOMAKE(fluxbox,0.9.9, no-define)
|
||||
AM_INIT_AUTOMAKE(fluxbox,cvs, no-define)
|
||||
|
||||
dnl Determine default prefix
|
||||
test x$prefix = "xNONE" && prefix="$ac_default_prefix"
|
||||
|
@ -243,7 +243,7 @@ CXXFLAGS="$CXXFLAGS $DEBUG"
|
|||
dnl Check whether to include native language support (i18n)
|
||||
AC_MSG_CHECKING([whether to include NLS support])
|
||||
AC_ARG_ENABLE(nls,
|
||||
[ --enable-nls include native language support [default=yes]],
|
||||
[ --enable-nls include native language support [default=no]],
|
||||
if test x$enableval = "xyes"; then
|
||||
AC_MSG_RESULT([yes])
|
||||
AC_DEFINE(NLS, 1, "Native language support")
|
||||
|
@ -251,9 +251,7 @@ AC_ARG_ENABLE(nls,
|
|||
else
|
||||
AC_MSG_RESULT([no])
|
||||
fi,
|
||||
AC_MSG_RESULT([yes])
|
||||
AC_DEFINE(NLS, 1, "Native language support")
|
||||
NLS="-DNLS"
|
||||
AC_MSG_RESULT([no])
|
||||
)
|
||||
AC_SUBST(NLS)
|
||||
|
||||
|
|
Loading…
Reference in a new issue