/[public]/psiconv/trunk/configure.in
ViewVC logotype

Diff of /psiconv/trunk/configure.in

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

Revision 21 Revision 79
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.5.0a) 3AM_INIT_AUTOMAKE(psiconv,0.8.0)
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,MagickWarning,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 AC_MSG_WARN(ImageMagick support disabled!) 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
80 AC_MSG_CHECKING(whether GetMagickInfo works)
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
89 return (NULL == GetMagickInfo(NULL)); }],
90 IMAGEMAGICK=yes,IMAGEMAGICK=no,IMAGEMAGICK=yes)
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
72 fi 99 fi
73fi 100fi
74if test x"$IMAGEMAGICK" = xyes ; then 101if test x"$IMAGEMAGICK" = xyes ; then
75 LIB_MAGICK=-lMagick 102 LIB_MAGICK="`Magick-config --libs` `Magick-config --ldflags`"
76 AC_DEFINE(IMAGEMAGICK) 103 AC_DEFINE(IMAGEMAGICK)
77else 104else
78 LIB_MAGICK= 105 LIB_MAGICK=
79fi 106fi
80AC_SUBST(LIB_MAGICK) 107AC_SUBST(LIB_MAGICK)
192 *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; 219 *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;;
193esac],[rtfdocs=false]) 220esac],[rtfdocs=false])
194AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) 221AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue)
195 222
196 223
197AC_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 extra/Makefile])

Legend:
Removed from v.21  
changed lines
  Added in v.79

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