| 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.9.5) |
4 | AM_INIT_AUTOMAKE(psiconv,0.9.6) |
| 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 |
| … | |
… | |
| 79 | LIBS="$LIBS `Magick-config --libs`" |
79 | LIBS="$LIBS `Magick-config --libs`" |
| 80 | |
80 | |
| 81 | |
81 | |
| 82 | AC_MSG_CHECKING(whether GetMagickInfo works and which API to use) |
82 | AC_MSG_CHECKING(whether GetMagickInfo works and which API to use) |
| 83 | AC_TRY_RUN([ #include <stdio.h> |
83 | AC_TRY_RUN([ #include <stdio.h> |
|
|
84 | #include <time.h> |
| 84 | #include <magick/api.h> |
85 | #include <magick/api.h> |
| 85 | int main(void) { ExceptionInfo exception; |
86 | int main(void) { ExceptionInfo exception; |
| 86 | GetExceptionInfo(&exception); |
87 | GetExceptionInfo(&exception); |
| 87 | OpenModules(&exception); |
88 | OpenModules(&exception); |
| 88 | return (NULL == GetMagickInfo(NULL,&exception)); }], |
89 | return (NULL == GetMagickInfo(NULL,&exception)); }], |