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.1) |
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 |
… | |
… | |
78 | LDFLAGS="$LDFLAGS `Magick-config --ldflags`" |
78 | LDFLAGS="$LDFLAGS `Magick-config --ldflags`" |
79 | LIBS="$LIBS `Magick-config --libs`" |
79 | LIBS="$LIBS `Magick-config --libs`" |
80 | |
80 | |
81 | AC_MSG_CHECKING(whether GetMagickInfo works) |
81 | AC_MSG_CHECKING(whether GetMagickInfo works) |
82 | AC_TRY_RUN([ #include <magick/magick.h> |
82 | AC_TRY_RUN([ #include <magick/magick.h> |
83 | #include <magick/config.h> |
|
|
84 | #include <stdio.h> |
|
|
85 | extern void OpenModules(void); |
|
|
86 | int main(void) { GetMagickInfo(NULL); |
83 | int main(void) { ExceptionInfo exception; |
87 | #if defined(HasLTDL) |
84 | GetExceptionInfo(&exception); |
88 | OpenModules(); |
85 | OpenModules(&exception); |
89 | #endif |
|
|
90 | return (NULL == GetMagickInfo(NULL)); }], |
86 | return (NULL == GetMagickInfo(NULL,&exception)); }], |
91 | IMAGEMAGICK=yes,IMAGEMAGICK=no,IMAGEMAGICK=yes) |
87 | IMAGEMAGICK=yes,IMAGEMAGICK=no,IMAGEMAGICK=yes) |
92 | AC_MSG_RESULT($IMAGEMAGICK) |
88 | AC_MSG_RESULT($IMAGEMAGICK) |
93 | LDFLAGS="$LDFLAGS_OLD" |
89 | LDFLAGS="$LDFLAGS_OLD" |
94 | LIBS="$LIBS_OLD" |
90 | LIBS="$LIBS_OLD" |
95 | dnl Note: CFLAGS can't be set for single directories, so we propagate them |
91 | dnl Note: CFLAGS can't be set for single directories, so we propagate them |
… | |
… | |
179 | AC_SUBST(INT_32_BIT) |
175 | AC_SUBST(INT_32_BIT) |
180 | |
176 | |
181 | dnl Checks for library functions. |
177 | dnl Checks for library functions. |
182 | AC_FUNC_VPRINTF |
178 | AC_FUNC_VPRINTF |
183 | AC_REPLACE_FUNCS(strdup) |
179 | AC_REPLACE_FUNCS(strdup) |
184 | AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.lo getopt1.lo") |
180 | AC_CHECK_FUNCS(getopt_long,,AC_LIBOBJ([getopt]);AC_LIBOBJ([getopt1])) |
185 | |
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) |
186 | |
202 | |
187 | dnl With and without functions |
203 | dnl With and without functions |
188 | AC_ARG_ENABLE(html-docs, |
204 | AC_ARG_ENABLE(html-docs, |
189 | [ --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)], |
190 | [case "${enableval}" in |
206 | [case "${enableval}" in |