aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-06-11 11:48:07 (GMT)
committerfluxgen <fluxgen>2004-06-11 11:48:07 (GMT)
commitc66c8ce138ab995b4ba02506dded40b88522ad86 (patch)
tree6fee9f14d8a53f843e879fecec8d2f4d3cf533ef /configure.in
parent868edbabf2f9d1bd602e526f45864ba79050c956 (diff)
downloadfluxbox-c66c8ce138ab995b4ba02506dded40b88522ad86.zip
fluxbox-c66c8ce138ab995b4ba02506dded40b88522ad86.tar.bz2
disabled nls as default until its fixed
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
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 @@
1dnl Initialize autoconf and automake 1dnl Initialize autoconf and automake
2AC_INIT(src/main.cc) 2AC_INIT(src/main.cc)
3AC_PREREQ(2.52) 3AC_PREREQ(2.52)
4AM_INIT_AUTOMAKE(fluxbox,0.9.9, no-define) 4AM_INIT_AUTOMAKE(fluxbox,cvs, no-define)
5 5
6dnl Determine default prefix 6dnl Determine default prefix
7test x$prefix = "xNONE" && prefix="$ac_default_prefix" 7test x$prefix = "xNONE" && prefix="$ac_default_prefix"
@@ -243,7 +243,7 @@ CXXFLAGS="$CXXFLAGS $DEBUG"
243dnl Check whether to include native language support (i18n) 243dnl Check whether to include native language support (i18n)
244AC_MSG_CHECKING([whether to include NLS support]) 244AC_MSG_CHECKING([whether to include NLS support])
245AC_ARG_ENABLE(nls, 245AC_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)
258AC_SUBST(NLS) 256AC_SUBST(NLS)
259 257