+2011-05-22 Bruno Haible <bruno@clisp.org>
+
+ strsignal: Move AC_LIBOBJ invocations to module description.
+ * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Set HAVE_STRSIGNAL. Move
+ AC_LIBOBJ and gl_PREREQ_STRSIGNAL invocations from here...
+ * modules/strsignal (configure.ac): ... to here.
+ (Depends-on): Update conditions.
+
2011-05-22 Bruno Haible <bruno@clisp.org>
strsep: Move AC_LIBOBJ invocations to module description.
-# strsignal.m4 serial 5
+# strsignal.m4 serial 6
dnl Copyright (C) 2008-2011 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
AC_CHECK_FUNCS([strsignal])
if test $ac_cv_func_strsignal = yes; then
+ HAVE_STRSIGNAL=1
dnl Check if strsignal behaves reasonably for out-of-range signal numbers.
dnl On Solaris it returns NULL; on AIX 5.1 it returns (char *) -1.
AC_CACHE_CHECK([whether strsignal always returns a string],
solaris* | aix*) gl_cv_func_working_strsignal=no;;
*) gl_cv_func_working_strsignal="guessing yes";;
esac])])
- else
- gl_cv_func_working_strsignal=no
- fi
-
- if test "$gl_cv_func_working_strsignal" = no; then
- if test $ac_cv_func_strsignal = yes; then
+ if test "$gl_cv_func_working_strsignal" = no; then
REPLACE_STRSIGNAL=1
fi
- AC_LIBOBJ([strsignal])
- gl_PREREQ_STRSIGNAL
+ else
+ HAVE_STRSIGNAL=0
fi
])
Depends-on:
string
extensions
-gettext-h [test $ac_cv_func_strsignal = no || test $REPLACE_STRSIGNAL = 1]
-lock [test $ac_cv_func_strsignal = no || test $REPLACE_STRSIGNAL = 1]
-tls [test $ac_cv_func_strsignal = no || test $REPLACE_STRSIGNAL = 1]
-snprintf [test $ac_cv_func_strsignal = no || test $REPLACE_STRSIGNAL = 1]
-memset [test $ac_cv_func_strsignal = no || test $REPLACE_STRSIGNAL = 1]
+gettext-h [test $HAVE_STRSIGNAL = 0 || test $REPLACE_STRSIGNAL = 1]
+lock [test $HAVE_STRSIGNAL = 0 || test $REPLACE_STRSIGNAL = 1]
+tls [test $HAVE_STRSIGNAL = 0 || test $REPLACE_STRSIGNAL = 1]
+snprintf [test $HAVE_STRSIGNAL = 0 || test $REPLACE_STRSIGNAL = 1]
+memset [test $HAVE_STRSIGNAL = 0 || test $REPLACE_STRSIGNAL = 1]
configure.ac:
gl_FUNC_STRSIGNAL
+if test $HAVE_STRSIGNAL = 0 || test $REPLACE_STRSIGNAL = 1; then
+ AC_LIBOBJ([strsignal])
+ gl_PREREQ_STRSIGNAL
+fi
gl_STRING_MODULE_INDICATOR([strsignal])
Makefile.am: