diff options
-rw-r--r-- | configure.in | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 4233be1..cd2e152 100644 --- a/configure.in +++ b/configure.in | |||
@@ -1,7 +1,7 @@ | |||
1 | dnl Initialize autoconf and automake | 1 | dnl Initialize autoconf and automake |
2 | AC_INIT(src/main.cc) | 2 | AC_INIT(src/main.cc) |
3 | AC_PREREQ(2.52) | 3 | AC_PREREQ(2.52) |
4 | AM_INIT_AUTOMAKE(fluxbox,0.9.9, no-define) | 4 | AM_INIT_AUTOMAKE(fluxbox,cvs, no-define) |
5 | 5 | ||
6 | dnl Determine default prefix | 6 | dnl Determine default prefix |
7 | test x$prefix = "xNONE" && prefix="$ac_default_prefix" | 7 | test x$prefix = "xNONE" && prefix="$ac_default_prefix" |
@@ -243,7 +243,7 @@ CXXFLAGS="$CXXFLAGS $DEBUG" | |||
243 | dnl Check whether to include native language support (i18n) | 243 | dnl Check whether to include native language support (i18n) |
244 | AC_MSG_CHECKING([whether to include NLS support]) | 244 | AC_MSG_CHECKING([whether to include NLS support]) |
245 | AC_ARG_ENABLE(nls, | 245 | AC_ARG_ENABLE(nls, |
246 | [ --enable-nls include native language support [default=yes]], | 246 | [ --enable-nls include native language support [default=no]], |
247 | if test x$enableval = "xyes"; then | 247 | if test x$enableval = "xyes"; then |
248 | AC_MSG_RESULT([yes]) | 248 | AC_MSG_RESULT([yes]) |
249 | AC_DEFINE(NLS, 1, "Native language support") | 249 | AC_DEFINE(NLS, 1, "Native language support") |
@@ -251,9 +251,7 @@ AC_ARG_ENABLE(nls, | |||
251 | else | 251 | else |
252 | AC_MSG_RESULT([no]) | 252 | AC_MSG_RESULT([no]) |
253 | fi, | 253 | fi, |
254 | AC_MSG_RESULT([yes]) | 254 | AC_MSG_RESULT([no]) |
255 | AC_DEFINE(NLS, 1, "Native language support") | ||
256 | NLS="-DNLS" | ||
257 | ) | 255 | ) |
258 | AC_SUBST(NLS) | 256 | AC_SUBST(NLS) |
259 | 257 | ||