1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(libstringprep, 0.0.6, bug-libstringprep@josefsson.org)
3 AC_CONFIG_SRCDIR(stringprep.h.in)
5 # Interfaces removed: CURRENT++, AGE=0, REVISION=0
6 # Interfaces added: CURRENT++, AGE++, REVISION=0
7 # No interfaces changed: REVISION++
16 AM_CONFIG_HEADER(config.h)
18 # Checks for programs.
21 AM_MISSING_PROG(PERL, perl, $missing_dir)
24 # Checks for header files.
26 AC_CHECK_HEADERS(sys/types.h string.h strings.h memory.h unistd.h errno.h)
28 # Checks for typedefs, structures, and compiler characteristics.
31 # Checks for library functions.
32 AC_REPLACE_FUNCS(memset strdup)
34 # Check if locale stuff works
35 AC_CACHE_CHECK([if setlocale() and nl_langinfo() works],
43 setlocale(LC_CTYPE, "");
44 cs = nl_langinfo(CODESET);
48 ac_cv_locale_works=yes,
49 ac_cv_locale_works=no,
50 ac_cv_locale_works=no)
52 if test "$ac_cv_locale_works" = "yes"; then
53 AC_DEFINE(LOCALE_WORKS, 1, [Define if setlocale() and nl_langinfo() works.])
56 AC_CONFIG_FILES([Makefile libstringprep.pc stringprep.h])