summaryrefslogtreecommitdiffstats
path: root/configure.in
blob: 6fb43307a5a60ec07d22fa4cd1ad65138db69174 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
dnl Process this file with autoconf to produce a configure script. -*-m4-*-

dnl Note: the banner comments below are intentionally done in shell syntax.
dnl These help me identify sections of the configure script produced
dnl by autoconf.  Some comments might appear inane and obvious, but again
dnl they are there to delimit sections in the output configure script.

##############################################################################
################ Setup #######################################################
##############################################################################

AC_INIT(src/mkid.c)
AM_CONFIG_HEADER(config.h)
AC_PREREQ(2.13)

AM_INIT_AUTOMAKE([id-utils], [3.2d])
GNU_PACKAGE="GNU $PACKAGE"
AC_DEFINE_UNQUOTED(GNU_PACKAGE, "$GNU_PACKAGE",
  [The concatenation of the strings \`GNU ', and PACKAGE.])

##############################################################################
################ Identify Package ############################################
##############################################################################

AC_DEFINE_UNQUOTED(PACKAGE_VERSION, "GNU $PACKAGE $VERSION",
  [The concatenation of \`GNU', and the macros PACKAGE and VERSION.])

##############################################################################
################ Maintainer Stuff ############################################
##############################################################################

ALL_LINGUAS="de fr"

changequote(,)dnl
case $VERSION in
*[a-z]) README_ALPHA=README-alpha;;
*)      README_ALPHA=;;
esac
changequote([, ])dnl
AC_SUBST(README_ALPHA)

##############################################################################
################ Check for tools #############################################
##############################################################################

AC_PROG_CC
AC_PROG_LN_S
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_CPP
AC_PROG_GCC_TRADITIONAL
AC_PROG_RANLIB
AC_AIX
AC_MINIX
AC_ISC_POSIX

##############################################################################
################ Check for libraries #########################################
##############################################################################

dnl no library checks

##############################################################################
################ Check for header files ######################################
##############################################################################

AC_HEADER_DIRENT
AC_HEADER_STDC
AC_HEADER_STAT
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(sys/types.h sys/param.h sys/stat.h sys/ioctl.h)
AC_CHECK_HEADERS(limits.h stddef.h stdlib.h unistd.h string.h fcntl.h)
AC_CHECK_HEADERS(malloc.h termios.h termio.h sgtty.h regex.h memory.h)

##############################################################################
################ Check for typedefs, structs, and compiler params ############
##############################################################################

AM_C_PROTOTYPES
AC_C_CONST
AC_TYPE_SIGNAL
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AM_TYPE_PTRDIFF_T

##############################################################################
################ Set default compilation flags ###############################
##############################################################################

: ${CFLAGS="-O -g"}
: ${LDFLAGS=-g}
AC_SUBST(CFLAGS)
AC_SUBST(LDFLAGS)

##############################################################################
################ Check for library functions & system calls ##################
##############################################################################

AC_FUNC_ALLOCA
AC_FUNC_VPRINTF
AM_FUNC_OBSTACK
AC_CHECK_FUNCS(getwd getcwd link strerror isascii bcopy bzero memcpy)
AC_REPLACE_FUNCS(strdup strndup strspn strcspn strpbrk strstr strtok)
AC_REPLACE_FUNCS(basename dirname fnmatch error memcpy memset)
AC_CHECK_FUNC(regcomp, , [LIBOBJS="$LIBOBJS regex.o"])

##############################################################################
################ Internationalization ########################################
##############################################################################

AM_GNU_GETTEXT

##############################################################################
################ Find a home for language map ################################
##############################################################################

if test "x$prefix" != xNONE; then
    datadir=$prefix/share
else
    datadir=$ac_default_prefix/share
fi
LANGUAGE_MAP_FILE=$datadir/id-lang.map
AC_DEFINE_UNQUOTED(LANGUAGE_MAP_FILE, "$LANGUAGE_MAP_FILE")
AC_SUBST(LANGUAGE_MAP_FILE)

##############################################################################
################ Find a home for Emacs Lisp code #############################
##############################################################################

AM_PATH_LISPDIR

##############################################################################
################ Generate the configure script ###############################
##############################################################################

# This is necessary so that .o files in LIBOBJS are also built via
# the ANSI2KNR-filtering rules.
LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`

AC_OUTPUT([Makefile
	   doc/Makefile
	   lib/Makefile
	   libidu/Makefile
	   src/Makefile
	   lisp/Makefile
	   intl/Makefile
	   m4/Makefile
	   po/Makefile.in
	   testsuite/Makefile
	  ],
	[sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile; \
	 test -z "$CONFIG_HEADERS" || echo timestamp >stamp-h])

##############################################################################
################ Done ########################################################
##############################################################################