1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(libstringprep, 0.1.0, 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++
15 AM_INIT_AUTOMAKE(gnits)
16 AM_CONFIG_HEADER(config.h)
18 # Checks for programs.
21 AM_MISSING_PROG(PERL, perl, $missing_dir)
25 # Checks for header files.
27 AC_CHECK_HEADERS(sys/types.h string.h strings.h memory.h unistd.h errno.h)
29 # Checks for typedefs, structures, and compiler characteristics.
32 # Checks for library functions.
33 AC_REPLACE_FUNCS(memset strdup)
35 # Check if locale stuff works
36 AC_CACHE_CHECK([if setlocale() and nl_langinfo() works],
44 setlocale(LC_CTYPE, "");
45 cs = nl_langinfo(CODESET);
49 ac_cv_locale_works=yes,
50 ac_cv_locale_works=no,
51 ac_cv_locale_works=no)
53 if test "$ac_cv_locale_works" = "yes"; then
54 AC_DEFINE(LOCALE_WORKS, 1, [Define if setlocale() and nl_langinfo() works.])
57 AC_CONFIG_FILES([Makefile libstringprep.pc stringprep.h])