aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-05-13 23:54:12 (GMT)
committerfluxgen <fluxgen>2003-05-13 23:54:12 (GMT)
commit860b70e5b65e0f6771442f7e5417440e23a5d1cd (patch)
tree0a6ade060bf4ff9bfdc81e1c9a0a7699d1131f7a /configure.in
parent61448a5bd4f8e83f70e3bf8c194d33300bbac4d3 (diff)
downloadfluxbox-860b70e5b65e0f6771442f7e5417440e23a5d1cd.zip
fluxbox-860b70e5b65e0f6771442f7e5417440e23a5d1cd.tar.bz2
fixed NLS bug
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 0f74cfc..a301393 100644
--- a/configure.in
+++ b/configure.in
@@ -174,12 +174,15 @@ AC_ARG_ENABLE(nls,
174 if test x$enableval = "xyes"; then 174 if test x$enableval = "xyes"; then
175 AC_MSG_RESULT([yes]) 175 AC_MSG_RESULT([yes])
176 AC_DEFINE(NLS, 1, "Natural language support") 176 AC_DEFINE(NLS, 1, "Natural language support")
177 NLS="-DNLS"
177 else 178 else
178 AC_MSG_RESULT([no]) 179 AC_MSG_RESULT([no])
179 fi, 180 fi,
180 AC_MSG_RESULT([yes]) 181 AC_MSG_RESULT([yes])
181 AC_DEFINE(NLS, 1, "Natural language support") 182 AC_DEFINE(NLS, 1, "Natural language support")
183 NLS="-DNLS"
182) 184)
185AC_SUBST(NLS)
183 186
184AC_CHECK_LIB(xpg4, setlocale, LIBS="$LIBS -lxpg4") 187AC_CHECK_LIB(xpg4, setlocale, LIBS="$LIBS -lxpg4")
185 188