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

Diff of /psiconv/tags/rel-0-8-1/configure.in

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

Revision 50 Revision 70
1dnl Process this file with autoconf to produce a configure script. 1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(psiconv) 2AC_INIT(lib/psiconv)
3AM_INIT_AUTOMAKE(psiconv,0.6.1) 3AM_INIT_AUTOMAKE(psiconv,0.7.1)
4 4
5AM_CONFIG_HEADER(config.h) 5AM_CONFIG_HEADER(config.h)
6 6
7dnl Checks for programs. 7dnl Checks for programs.
8AM_PROG_LIBTOOL 8AM_PROG_LIBTOOL
64AC_ARG_WITH(imagemagick, 64AC_ARG_WITH(imagemagick,
65 [ --with-imagemagick enable ImageMagick (default = yes)], 65 [ --with-imagemagick enable ImageMagick (default = yes)],
66 [IMAGEMAGICK=$withval], 66 [IMAGEMAGICK=$withval],
67 [IMAGEMAGICK='yes']) 67 [IMAGEMAGICK='yes'])
68if test x"$IMAGEMAGICK" != xno ; then 68if test x"$IMAGEMAGICK" != xno ; then
69 AC_CHECK_LIB(Magick,ConstituteImage,IMAGEMAGICK=yes,IMAGEMAGICK=no) 69 AC_CHECK_PROG(IMAGEMAGICK,Magick-config,yes,no)
70 if test x"$IMAGEMAGICK" != xno ; then 70 if test x"$IMAGEMAGICK" != xno ; then
71 CFLAGS_OLD="$CFLAGS"
72 CPPFLAGS_OLD="$CPPFLAGS"
73 LDFLAGS_OLD="$LDFLAGS"
74 LIBS_OLD="$LIBS"
75 CFLAGS="$CFLAGS `Magick-config --cflags`"
76 CPPFLAGS="$CPPFLAGS `Magick-config --cppflags`"
77 LDFLAGS="$LDFLAGS `Magick-config --ldflags`"
78 LIBS="$LIBS `Magick-config --libs`"
79
71 AC_MSG_CHECKING(whether GetMagickInfo works) 80 AC_MSG_CHECKING(whether GetMagickInfo works)
72 AC_TRY_RUN([ #include <magick/magick.h> 81 AC_TRY_RUN([ #include <magick/magick.h>
82 #include <magick/config.h>
83 #include <stdio.h>
84 extern void OpenModules(void);
85 int main(void) { GetMagickInfo(NULL);
86 #if defined(HasLTDL)
87 OpenModules();
88 #endif
73 int main(void) { return (NULL == GetMagickInfo(NULL)) }], 89 return (NULL == GetMagickInfo(NULL)); }],
74 IMAGEMAGICK=yes,IMAGEMAGICK=no,IMAGEMAGICK=yes) 90 IMAGEMAGICK=yes,IMAGEMAGICK=no,IMAGEMAGICK=yes)
75 AC_MSG_RESULT($IMAGEMAGICK) 91 AC_MSG_RESULT($IMAGEMAGICK)
92 LDFLAGS="$LDFLAGS_OLD"
93 LIBS="$LIBS_OLD"
94dnl Note: CFLAGS can't be set for single directories, so we propagate them
95 if test x"$IMAGEMAGICK" = xno ; then
96 CFLAGS="$CFLAGS_OLD"
97 CPPFLAGS="$CPPFLAGS_OLD"
98 fi
76 fi 99 fi
77 if test x"$IMAGEMAGICK" = xno ; then
78 AC_MSG_WARN(ImageMagick support disabled!)
79 fi
80fi 100fi
81if test x"$IMAGEMAGICK" = xyes ; then 101if test x"$IMAGEMAGICK" = xyes ; then
82 LIB_MAGICK=-lMagick 102 LIB_MAGICK="`Magick-config --libs` `Magick-config --ldflags`"
83 AC_DEFINE(IMAGEMAGICK) 103 AC_DEFINE(IMAGEMAGICK)
84else 104else
85 LIB_MAGICK= 105 LIB_MAGICK=
86fi 106fi
87AC_SUBST(LIB_MAGICK) 107AC_SUBST(LIB_MAGICK)
199 *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; 219 *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;;
200esac],[rtfdocs=false]) 220esac],[rtfdocs=false])
201AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) 221AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue)
202 222
203 223
204AC_OUTPUT([Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile]) 224AC_OUTPUT([Makefile compat/Makefile lib/Makefile lib/psiconv/Makefile program/Makefile program/psiconv/Makefile lib/psiconv/general.h formats/Makefile docs/Makefile])

Legend:
Removed from v.50  
changed lines
  Added in v.70

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