/[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 2 Revision 344
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
3AC_CONFIG_SRCDIR([lib/psiconv])
3AM_INIT_AUTOMAKE(psiconv,0.5.0) 4AM_INIT_AUTOMAKE(psiconv,0.9.9)
4 5
5AM_CONFIG_HEADER(config.h) 6AM_CONFIG_HEADER(config.h)
6 7
7dnl Checks for programs. 8dnl Checks for programs.
8AM_PROG_LIBTOOL 9AM_PROG_LIBTOOL
9 10
11dnl This is stolen from gnome-libs-1.0.14
12AC_ARG_ENABLE(compile-warnings,
13[ --enable-compile-warnings=[no/minimum/yes] Turn on compiler warnings.],
14,enable_compile_warnings=minimum)
15
16AC_MSG_CHECKING(what warning flags to pass to the C compiler)
17warnCFLAGS=
18if test "x$GCC" != xyes; then
19 enable_compile_warnings=no
20fi
21if test "x$enable_compile_warnings" != "xno"; then
22 if test "x$GCC" = "xyes"; then
23 case " $CFLAGS " in
24 *[\ \ ]-Wall[\ \ ]*) ;;
25 *) warnCFLAGS="-Wall -Wunused" ;;
26 esac
27
28 ## -W is not all that useful. And it cannot be controlled
29 ## with individual -Wno-xxx flags, unlike -Wall
30 if test "x$enable_compile_warnings" = "xyes"; then
31 warnCFLAGS="$warnCFLAGS -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith"
32 fi
33 fi
34fi
35AC_MSG_RESULT($warnCFLAGS)
36
37AC_ARG_ENABLE(iso-c,
38 [ --enable-iso-c Try to warn if code is not ISO C ],,
39 enable_iso_c=no)
40
41AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)
42complCFLAGS=
43if test "x$enable_iso_c" != "xno"; then
44 if test "x$GCC" = "xyes"; then
45 case " $CFLAGS " in
46 *[\ \ ]-ansi[\ \ ]*) ;;
47 *) complCFLAGS="$complCFLAGS -ansi" ;;
48 esac
49
50 case " $CFLAGS " in
51 *[\ \ ]-pedantic[\ \ ]*) ;;
52 *) complCFLAGS="$complCFLAGS -pedantic" ;;
53 esac
54 fi
55fi
56AC_MSG_RESULT($complCFLAGS)
57if test "x$cflags_set" != "xyes"; then
58 CFLAGS="$CFLAGS $warnCFLAGS $complCFLAGS"
59 cflags_set=yes
60 AC_SUBST(cflags_set)
61fi
62
63
10dnl Checks for libraries. 64dnl Checks for libraries.
65AC_ARG_WITH(imagemagick,
66 [ --with-imagemagick enable ImageMagick (default = yes)],
67 [IMAGEMAGICK=$withval],
68 [IMAGEMAGICK='yes'])
69if test x"$IMAGEMAGICK" != xno ; then
70 AC_CHECK_PROG(IMAGEMAGICK,Magick-config,yes,no)
71 if test x"$IMAGEMAGICK" != xno ; then
72 CFLAGS_OLD="$CFLAGS"
73 CPPFLAGS_OLD="$CPPFLAGS"
74 LDFLAGS_OLD="$LDFLAGS"
75 LIBS_OLD="$LIBS"
76 CFLAGS="$CFLAGS `Magick-config --cflags`"
77 CPPFLAGS="$CPPFLAGS `Magick-config --cppflags`"
78 LDFLAGS="$LDFLAGS `Magick-config --ldflags`"
79 LIBS="$LIBS `Magick-config --libs`"
80
81
82 AC_MSG_CHECKING(whether GetMagickInfo works and which API to use)
83 AC_TRY_RUN([ #include <stdio.h>
84 #include <stdlib.h>
85 #include <time.h>
86 #include <magick/api.h>
87 int main(void) {
88 unsigned long number_formats;
89 ExceptionInfo exception;
90 GetExceptionInfo(&exception);
91 OpenModules(&exception);
92 GetMagickInfoList("*",&number_formats,&exception);
93 return number_formats == 0; }],
94 IMAGEMAGICK=4,IMAGEMAGICK=no,IMAGEMAGICK=no)
95 if test x"$IMAGEMAGICK" = xno ; then
96 AC_TRY_RUN([ #include <stdio.h>
97 #include <stdlib.h>
98 #include <time.h>
99 #include <magick/api.h>
100 int main(void) {
101 unsigned long number_formats;
102 ExceptionInfo exception;
103 GetExceptionInfo(&exception);
104 OpenModules(&exception);
105 GetMagickInfoList("*",&number_formats);
106 return number_formats == 0; }],
107 IMAGEMAGICK=3,IMAGEMAGICK=no,IMAGEMAGICK=no)
108 fi
109 if test x"$IMAGEMAGICK" = xno ; then
110 AC_TRY_RUN([ #include <stdio.h>
111 #include <stdlib.h>
112 #include <time.h>
113 #include <magick/api.h>
114 int main(void) { ExceptionInfo exception;
115 GetExceptionInfo(&exception);
116 OpenModules(&exception);
117 return (NULL == GetMagickInfo(NULL,&exception)); }],
118 IMAGEMAGICK=2,IMAGEMAGICK=no,IMAGEMAGICK=no)
119 fi
120 if test x"$IMAGEMAGICK" = xno ; then
121 AC_TRY_RUN([ #include <magick/magick.h>
122 int main(void) { ExceptionInfo exception;
123 GetExceptionInfo(&exception);
124 OpenModules(&exception);
125 return (NULL == GetMagickInfo(NULL,&exception)); }],
126 IMAGEMAGICK=1,IMAGEMAGICK=no,IMAGEMAGICK=no)
127 fi
128 if test x"$IMAGEMAGICK" = xno ; then
129 # 100 equals GraphicsMagick
130 AC_TRY_RUN([ #include <magick/api.h>
131 int main(void) {
132 MagickInfo **formats;
133 ExceptionInfo exception;
134 InitializeMagick(NULL);
135 GetExceptionInfo(&exception);
136 return (NULL == GetMagickInfoArray(&exception)); }],
137 IMAGEMAGICK=100,IMAGEMAGICK=no,IMAGEMAGICK=no)
138 fi
139
140 AC_MSG_RESULT("Version $IMAGEMAGICK")
141 LDFLAGS="$LDFLAGS_OLD"
142 LIBS="$LIBS_OLD"
143dnl Note: CFLAGS can't be set for single directories, so we propagate them
144 if test x"$IMAGEMAGICK" = xno ; then
145 CFLAGS="$CFLAGS_OLD"
146 CPPFLAGS="$CPPFLAGS_OLD"
147 fi
148 fi
149fi
150if test x"$IMAGEMAGICK" != xno ; then
151 LIB_MAGICK="`Magick-config --libs` `Magick-config --ldflags`"
152 AC_DEFINE(IMAGEMAGICK, 1 ,[ImageMagick availability])
153 AC_DEFINE_UNQUOTED(IMAGEMAGICK_API, $IMAGEMAGICK, [ImageMagick API version])
154else
155 LIB_MAGICK=
156fi
157AC_SUBST(LIB_MAGICK)
11 158
12dnl Checks for header files. 159dnl Checks for header files.
13AC_HEADER_STDC 160AC_HEADER_STDC
14AC_CHECK_HEADERS(unistd.h) 161AC_CHECK_HEADERS(unistd.h)
15 162
31 AC_MSG_RESULT(char) 178 AC_MSG_RESULT(char)
32elif test $ac_cv_sizeof_short -ge 1 ; then 179elif test $ac_cv_sizeof_short -ge 1 ; then
33 INT_8_BIT=short 180 INT_8_BIT=short
34 AC_MSG_RESULT(short) 181 AC_MSG_RESULT(short)
35elif test $ac_cv_sizeof_int -ge 1 ; then 182elif test $ac_cv_sizeof_int -ge 1 ; then
36 INT_8_BIT=int
37 AC_MSG_RESULT(int) 183 AC_MSG_RESULT(int)
38elif test $ac_cv_sizeof_long -ge 1 ; then 184elif test $ac_cv_sizeof_long -ge 1 ; then
39 INT_8_BIT=long 185 INT_8_BIT=long
40 AC_MSG_RESULT(long) 186 AC_MSG_RESULT(long)
41else 187else
80AC_SUBST(INT_16_BIT) 226AC_SUBST(INT_16_BIT)
81AC_SUBST(INT_32_BIT) 227AC_SUBST(INT_32_BIT)
82 228
83dnl Checks for library functions. 229dnl Checks for library functions.
84AC_FUNC_VPRINTF 230AC_FUNC_VPRINTF
85AC_CHECK_FUNCS(strdup)
86AC_REPLACE_FUNCS(strdup) 231AC_REPLACE_FUNCS(strdup)
232AC_CHECK_FUNC(getopt_long,getopt=yes,getopt=no)
233if test $getopt = no; then
234 AC_LIBOBJ([getopt])
235 AC_LIBOBJ([getopt1])
236fi
237
238AC_ARG_ENABLE(dmalloc,
239[ --enable-dmalloc Enable dmalloc for developers (default:off)],
240[case "${enableval}" in
241 yes) dmalloc=yes ;;
242 no) dmalloc=no ;;
243 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dmalloc) ;;
244esac],[dmalloc=false])
245if test x"$dmalloc" = xyes; then
246 AC_CHECK_LIB(dmalloc,malloc,dmalloc=yes,dmalloc=no)
247fi
248if test x"$dmalloc" = xyes; then
249AC_CHECK_HEADER(dmalloc.h,dmalloc=yes,dmalloc=no)
250fi
251if test x"$dmalloc" = xyes ; then
252 LIB_DMALLOC=-ldmalloc
253 AC_DEFINE(DMALLOC,1,[DMalloc availability])
254else
255 LIB_DMALLOC=
256fi
257AC_SUBST(LIB_DMALLOC)
87 258
88dnl With and without functions 259dnl With and without functions
89AC_ARG_ENABLE(html-docs, 260AC_ARG_ENABLE(xhtml-docs,
90[ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], 261[ --disable-xhtml-docs Disable generation of XHTML docs (default: on)],
91[case "${enableval}" in 262[case "${enableval}" in
92 yes) htmldocs=true ;; 263 yes) xhtmldocs=true ;;
93 no) htmldocs=false ;; 264 no) xhtmldocs=false ;;
94 *) AC_MSG_ERROR(bad value ${enableval} for --enable-html-docs) ;; 265 *) AC_MSG_ERROR(bad value ${enableval} for --enable-xhtml-docs) ;;
95esac],[htmldocs=true]) 266esac],[xhtmldocs=true])
96AM_CONDITIONAL(HTMLDOCS,test x$htmldocs = xtrue) 267AM_CONDITIONAL(XHTMLDOCS,test x$xhtmldocs = xtrue)
97 268
98AC_ARG_ENABLE(html4-docs, 269AC_ARG_ENABLE(html4-docs,
99[ --enable-html4-docs Enable generation of HTML 4 docs (default: off)], 270[ --enable-html4-docs Enable generation of HTML 4 docs (default: off)],
100[case "${enableval}" in 271[case "${enableval}" in
101 yes) html4docs=true ;; 272 yes) html4docs=true ;;
111 no) asciidocs=false ;; 282 no) asciidocs=false ;;
112 *) AC_MSG_ERROR(bad value ${enableval} for --enable-ascii-docs) ;; 283 *) AC_MSG_ERROR(bad value ${enableval} for --enable-ascii-docs) ;;
113esac],[asciidocs=false]) 284esac],[asciidocs=false])
114AM_CONDITIONAL(ASCIIDOCS,test x$asciidocs = xtrue) 285AM_CONDITIONAL(ASCIIDOCS,test x$asciidocs = xtrue)
115 286
116AC_OUTPUT([Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile]) 287AC_ARG_WITH(etcdir,
288 [ --with-etcdir=DIR Set configfile dir (default: SYSCONFDIR/psiconv)],
289 [PSICONVETCDIR=${withval}],
290 [PSICONVETCDIR=${sysconfdir}/psiconv])
291AC_SUBST(PSICONVETCDIR)
292
293AC_ARG_WITH(imagemagick,
294 [ --with-imagemagick enable ImageMagick (default = yes)],
295 [IMAGEMAGICK=$withval],
296 [IMAGEMAGICK='yes'])
297
298AC_CONFIG_FILES([Makefile compat/Makefile lib/Makefile lib/psiconv/Makefile program/Makefile program/psiconv/Makefile program/psiconv-config/Makefile program/psiconv-config/psiconv-config program/psiconv-config/psiconv-config.man lib/psiconv/general.h formats/Makefile docs/Makefile program/extra/Makefile etc/Makefile examples/Makefile])
299AC_OUTPUT

Legend:
Removed from v.2  
changed lines
  Added in v.344

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