/[public]/psiconv/tags/rel-0-9-9/configure.in
ViewVC logotype

Diff of /psiconv/tags/rel-0-9-9/configure.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 126 Revision 147
1dnl Process this file with autoconf to produce a configure script. 1dnl Process this file with autoconf to produce a configure script.
2AC_INIT 2AC_INIT
3AC_CONFIG_SRCDIR([lib/psiconv]) 3AC_CONFIG_SRCDIR([lib/psiconv])
4AM_INIT_AUTOMAKE(psiconv,0.8.2) 4AM_INIT_AUTOMAKE(psiconv,0.8.3)
5 5
6AM_CONFIG_HEADER(config.h) 6AM_CONFIG_HEADER(config.h)
7 7
8dnl Checks for programs. 8dnl Checks for programs.
9AM_PROG_LIBTOOL 9AM_PROG_LIBTOOL
175AC_SUBST(INT_32_BIT) 175AC_SUBST(INT_32_BIT)
176 176
177dnl Checks for library functions. 177dnl Checks for library functions.
178AC_FUNC_VPRINTF 178AC_FUNC_VPRINTF
179AC_REPLACE_FUNCS(strdup) 179AC_REPLACE_FUNCS(strdup)
180AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.lo getopt1.lo") 180AC_CHECK_FUNCS(getopt_long,,AC_LIBOBJ([getopt]);AC_LIBOBJ([getopt1]))
181 181
182AC_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) ;;
188esac],[dmalloc=false])
189if test x"$dmalloc" = xyes; then
190 AC_CHECK_LIB(dmalloc,malloc,dmalloc=yes,dmalloc=no)
191fi
192if test x"$dmalloc" = xyes; then
193AC_CHECK_HEADER(dmalloc.h,dmalloc=yes,dmalloc=no)
194fi
195if test x"$dmalloc" = xyes ; then
196 LIB_DMALLOC=-ldmalloc
197 AC_DEFINE(DMALLOC,1,[DMalloc availability])
198else
199 LIB_DMALLOC=
200fi
201AC_SUBST(LIB_DMALLOC)
182 202
183dnl With and without functions 203dnl With and without functions
184AC_ARG_ENABLE(html-docs, 204AC_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

Legend:
Removed from v.126  
changed lines
  Added in v.147

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26