aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Pavlik <rpavlik@iastate.edu>2011-10-28 17:50:11 (GMT)
committerRyan Pavlik <rpavlik@iastate.edu>2011-10-31 15:54:09 (GMT)
commit4ded38f43f2411210ab9508d8d8ac83270d6e5d2 (patch)
treef5a4f7a3be1f1d5a4ef1e7f88acdede0052af4b9
parentf922d2d80359fa659f511d0fc8c18bdd11fe06f7 (diff)
downloadfluxbox_paul-4ded38f43f2411210ab9508d8d8ac83270d6e5d2.zip
fluxbox_paul-4ded38f43f2411210ab9508d8d8ac83270d6e5d2.tar.bz2
configure.in: Windows requires a library to link for catgets
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 71c86d1..14f1993 100644
--- a/configure.in
+++ b/configure.in
@@ -65,6 +65,9 @@ AC_CHECK_FUNCS(catclose catgets catopen getpid gettimeofday memset mkdir \
65 nl_langinfo putenv regcomp select setenv setlocale sigaction snprintf \ 65 nl_langinfo putenv regcomp select setenv setlocale sigaction snprintf \
66 sqrt strcasecmp strcasestr strchr strstr strtol strtoul sync vsnprintf) 66 sqrt strcasecmp strcasestr strchr strstr strtol strtoul sync vsnprintf)
67 67
68dnl Windows requires the mingw-catgets library for the catgets function.
69AC_SEARCH_LIBS([catgets], [catgets], [], [])
70
68dnl The autoconf test for strftime is broken now (due to gcc 3.3 bug?): 71dnl The autoconf test for strftime is broken now (due to gcc 3.3 bug?):
69dnl Gcc 3.3 testprog = ``extern "C" char strftime;'', build with g++ test.cc 72dnl Gcc 3.3 testprog = ``extern "C" char strftime;'', build with g++ test.cc
70dnl breaks with: 73dnl breaks with: