diff options
author | Ryan Pavlik <rpavlik@iastate.edu> | 2011-10-28 17:50:11 (GMT) |
---|---|---|
committer | Ryan Pavlik <rpavlik@iastate.edu> | 2011-10-31 15:54:09 (GMT) |
commit | 4ded38f43f2411210ab9508d8d8ac83270d6e5d2 (patch) | |
tree | f5a4f7a3be1f1d5a4ef1e7f88acdede0052af4b9 | |
parent | f922d2d80359fa659f511d0fc8c18bdd11fe06f7 (diff) | |
download | fluxbox-4ded38f43f2411210ab9508d8d8ac83270d6e5d2.zip fluxbox-4ded38f43f2411210ab9508d8d8ac83270d6e5d2.tar.bz2 |
configure.in: Windows requires a library to link for catgets
-rw-r--r-- | configure.in | 3 |
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 | ||
68 | dnl Windows requires the mingw-catgets library for the catgets function. | ||
69 | AC_SEARCH_LIBS([catgets], [catgets], [], []) | ||
70 | |||
68 | dnl The autoconf test for strftime is broken now (due to gcc 3.3 bug?): | 71 | dnl The autoconf test for strftime is broken now (due to gcc 3.3 bug?): |
69 | dnl Gcc 3.3 testprog = ``extern "C" char strftime;'', build with g++ test.cc | 72 | dnl Gcc 3.3 testprog = ``extern "C" char strftime;'', build with g++ test.cc |
70 | dnl breaks with: | 73 | dnl breaks with: |