forked from pinard/Recode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
51 lines (40 loc) · 1.03 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Configure template for Recode.
# Copyright (C) 1994-1999, 2000, 2001 Free Software Foundation, Inc.
# Process this file with autoconf to produce a configure script.
AC_INIT(src/recode.c)
AC_PREREQ(2.12)
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(recode, 3.7-beta2)
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_CC
AC_AIX
AC_MINIX
AM_PROG_LIBTOOL
AC_ISC_POSIX
AM_C_PROTOTYPES
AC_C_CONST
AC_C_INLINE
AC_PROG_LEX
AC_HEADER_STDC
AC_CHECK_HEADERS(limits.h locale.h memory.h stdbool.h stddef.h stdlib.h string.h unistd.h utime.h)
AC_TYPE_SIGNAL
jm_STRUCT_UTIMBUF
AM_ICONV
LIBS="$LIBICONV $LIBS"
AC_CHECK_FUNCS(dup2 mbrtowc rename setlocale strerror strndup wcrtomb)
AC_REPLACE_FUNCS(strtol strtoul)
AC_FUNC_ALLOCA
AC_FUNC_VPRINTF
jm_FUNC_MALLOC
jm_FUNC_REALLOC
dnl AC_CANONICAL_HOST
jm_LANGINFO_CODESET
jm_GLIBC21
AM_WITH_DMALLOC
AM_GNU_GETTEXT(external)
AM_GNU_GETTEXT_VERSION([0.16])
AH_BOTTOM([
#include "cleaner.h"
])
AC_OUTPUT(Makefile cleaner.h contrib/Makefile doc/Makefile lib/Makefile
po/Makefile.in src/Makefile tests/Makefile tests/setup.py)