1 | dnl Process this file with autoconf to produce a configure script. |
1 | dnl Process this file with autoconf to produce a configure script. |
2 | AC_INIT |
2 | AC_INIT |
3 | AC_CONFIG_SRCDIR([lib/psiconv]) |
3 | AC_CONFIG_SRCDIR([lib/psiconv]) |
4 | AM_INIT_AUTOMAKE(psiconv,0.8.2) |
4 | AM_INIT_AUTOMAKE(psiconv,0.8.4) |
5 | |
5 | |
6 | AM_CONFIG_HEADER(config.h) |
6 | AM_CONFIG_HEADER(config.h) |
7 | |
7 | |
8 | dnl Checks for programs. |
8 | dnl Checks for programs. |
9 | AM_PROG_LIBTOOL |
9 | AM_PROG_LIBTOOL |
… | |
… | |
175 | AC_SUBST(INT_32_BIT) |
175 | AC_SUBST(INT_32_BIT) |
176 | |
176 | |
177 | dnl Checks for library functions. |
177 | dnl Checks for library functions. |
178 | AC_FUNC_VPRINTF |
178 | AC_FUNC_VPRINTF |
179 | AC_REPLACE_FUNCS(strdup) |
179 | AC_REPLACE_FUNCS(strdup) |
180 | AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.lo getopt1.lo") |
180 | AC_CHECK_FUNCS(getopt_long,,AC_LIBOBJ([getopt]);AC_LIBOBJ([getopt1])) |
181 | |
181 | |
|
|
182 | AC_ARG_ENABLE(dmalloc, |
|
|
183 | [ --enable-dmalloc Enable dmalloc for developers (default:off)], |
|
|
184 | [case "${enableval}" in |
|
|
185 | yes) dmalloc=yes ;; |
|
|
186 | no) dmalloc=no ;; |
|
|
187 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-dmalloc) ;; |
|
|
188 | esac],[dmalloc=false]) |
|
|
189 | if test x"$dmalloc" = xyes; then |
|
|
190 | AC_CHECK_LIB(dmalloc,malloc,dmalloc=yes,dmalloc=no) |
|
|
191 | fi |
|
|
192 | if test x"$dmalloc" = xyes; then |
|
|
193 | AC_CHECK_HEADER(dmalloc.h,dmalloc=yes,dmalloc=no) |
|
|
194 | fi |
|
|
195 | if test x"$dmalloc" = xyes ; then |
|
|
196 | LIB_DMALLOC=-ldmalloc |
|
|
197 | AC_DEFINE(DMALLOC,1,[DMalloc availability]) |
|
|
198 | else |
|
|
199 | LIB_DMALLOC= |
|
|
200 | fi |
|
|
201 | AC_SUBST(LIB_DMALLOC) |
182 | |
202 | |
183 | dnl With and without functions |
203 | dnl With and without functions |
184 | AC_ARG_ENABLE(html-docs, |
204 | AC_ARG_ENABLE(html-docs, |
185 | [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], |
205 | [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], |
186 | [case "${enableval}" in |
206 | [case "${enableval}" in |