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

Annotation of /psiconv/tags/rel-0-9-9/configure.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 350 - (hide annotations)
Wed Oct 22 19:53:16 2014 UTC (9 years, 5 months ago) by frodo
Original Path: psiconv/trunk/configure.in
File size: 9501 byte(s)
(Frodo) Add manpage for psiconf.conf

1 frodo 2 dnl Process this file with autoconf to produce a configure script.
2 frodo 116 AC_INIT
3     AC_CONFIG_SRCDIR([lib/psiconv])
4 frodo 344 AM_INIT_AUTOMAKE(psiconv,0.9.9)
5 frodo 2
6     AM_CONFIG_HEADER(config.h)
7    
8     dnl Checks for programs.
9     AM_PROG_LIBTOOL
10    
11 frodo 21 dnl This is stolen from gnome-libs-1.0.14
12     AC_ARG_ENABLE(compile-warnings,
13     [ --enable-compile-warnings=[no/minimum/yes] Turn on compiler warnings.],
14     ,enable_compile_warnings=minimum)
15    
16     AC_MSG_CHECKING(what warning flags to pass to the C compiler)
17     warnCFLAGS=
18     if test "x$GCC" != xyes; then
19     enable_compile_warnings=no
20     fi
21     if 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
34     fi
35     AC_MSG_RESULT($warnCFLAGS)
36    
37     AC_ARG_ENABLE(iso-c,
38     [ --enable-iso-c Try to warn if code is not ISO C ],,
39     enable_iso_c=no)
40    
41     AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)
42     complCFLAGS=
43     if 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
55     fi
56     AC_MSG_RESULT($complCFLAGS)
57     if test "x$cflags_set" != "xyes"; then
58     CFLAGS="$CFLAGS $warnCFLAGS $complCFLAGS"
59     cflags_set=yes
60     AC_SUBST(cflags_set)
61     fi
62    
63    
64 frodo 2 dnl Checks for libraries.
65 frodo 16 AC_ARG_WITH(imagemagick,
66     [ --with-imagemagick enable ImageMagick (default = yes)],
67     [IMAGEMAGICK=$withval],
68     [IMAGEMAGICK='yes'])
69     if test x"$IMAGEMAGICK" != xno ; then
70 frodo 53 AC_CHECK_PROG(IMAGEMAGICK,Magick-config,yes,no)
71 frodo 50 if test x"$IMAGEMAGICK" != xno ; then
72 frodo 53 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 frodo 152
82     AC_MSG_CHECKING(whether GetMagickInfo works and which API to use)
83     AC_TRY_RUN([ #include <stdio.h>
84 frodo 255 #include <stdlib.h>
85 frodo 252 #include <time.h>
86 frodo 152 #include <magick/api.h>
87 frodo 255 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 frodo 152 if test x"$IMAGEMAGICK" = xno ; then
96 frodo 255 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 frodo 152 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 frodo 255 IMAGEMAGICK=1,IMAGEMAGICK=no,IMAGEMAGICK=no)
127 frodo 152 fi
128 frodo 343 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 frodo 255 AC_MSG_RESULT("Version $IMAGEMAGICK")
141 frodo 53 LDFLAGS="$LDFLAGS_OLD"
142     LIBS="$LIBS_OLD"
143     dnl 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 frodo 50 fi
149 frodo 16 fi
150 frodo 152 if test x"$IMAGEMAGICK" != xno ; then
151 frodo 53 LIB_MAGICK="`Magick-config --libs` `Magick-config --ldflags`"
152 frodo 255 AC_DEFINE(IMAGEMAGICK, 1 ,[ImageMagick availability])
153     AC_DEFINE_UNQUOTED(IMAGEMAGICK_API, $IMAGEMAGICK, [ImageMagick API version])
154 frodo 16 else
155     LIB_MAGICK=
156     fi
157     AC_SUBST(LIB_MAGICK)
158 frodo 2
159     dnl Checks for header files.
160     AC_HEADER_STDC
161     AC_CHECK_HEADERS(unistd.h)
162    
163     dnl Checks for typedefs, structures, and compiler characteristics.
164     AC_C_CONST
165     AC_TYPE_SIZE_T
166    
167     dnl Here we check for large enough integer types. This is not quite
168     dnl good enough, but it should work almost always.
169    
170     AC_CHECK_SIZEOF(char,1)
171     AC_CHECK_SIZEOF(short,1)
172     AC_CHECK_SIZEOF(int,2)
173     AC_CHECK_SIZEOF(long,4)
174    
175     AC_MSG_CHECKING(for an 8 bit integer type)
176     if test $ac_cv_sizeof_char -ge 1 ; then
177     INT_8_BIT=char
178     AC_MSG_RESULT(char)
179     elif test $ac_cv_sizeof_short -ge 1 ; then
180     INT_8_BIT=short
181     AC_MSG_RESULT(short)
182     elif test $ac_cv_sizeof_int -ge 1 ; then
183     AC_MSG_RESULT(int)
184     elif test $ac_cv_sizeof_long -ge 1 ; then
185     INT_8_BIT=long
186     AC_MSG_RESULT(long)
187     else
188     AC_MSG_ERROR(No integer type of at least 8 bits found)
189     fi
190    
191     AC_MSG_CHECKING(for a 16 bit integer type)
192     if test $ac_cv_sizeof_char -ge 2 ; then
193     INT_16_BIT=char
194     AC_MSG_RESULT(char)
195     elif test $ac_cv_sizeof_short -ge 2 ; then
196     INT_16_BIT=short
197     AC_MSG_RESULT(short)
198     elif test $ac_cv_sizeof_int -ge 2 ; then
199     INT_16_BIT=int
200     AC_MSG_RESULT(int)
201     elif test $ac_cv_sizeof_long -ge 2 ; then
202     INT_16_BIT=long
203     AC_MSG_RESULT(long)
204     else
205     AC_MSG_ERROR(No integer type of at least 16 bits found)
206     fi
207    
208     AC_MSG_CHECKING(for a 32 bit integer type)
209     if test $ac_cv_sizeof_char -ge 4 ; then
210     INT_32_BIT=char
211     AC_MSG_RESULT(char)
212     elif test $ac_cv_sizeof_short -ge 4 ; then
213     INT_32_BIT=short
214     AC_MSG_RESULT(short)
215     elif test $ac_cv_sizeof_int -ge 4 ; then
216     INT_32_BIT=int
217     AC_MSG_RESULT(int)
218     elif test $ac_cv_sizeof_long -ge 4 ; then
219     INT_32_BIT=long
220     AC_MSG_RESULT(long)
221     else
222     AC_MSG_ERROR(No integer type of at least 32 bits found)
223     fi
224    
225     AC_SUBST(INT_8_BIT)
226     AC_SUBST(INT_16_BIT)
227     AC_SUBST(INT_32_BIT)
228    
229     dnl Checks for library functions.
230     AC_FUNC_VPRINTF
231     AC_REPLACE_FUNCS(strdup)
232 frodo 186 AC_CHECK_FUNC(getopt_long,getopt=yes,getopt=no)
233     if test $getopt = no; then
234     AC_LIBOBJ([getopt])
235     AC_LIBOBJ([getopt1])
236     fi
237 frodo 2
238 frodo 142 AC_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) ;;
244     esac],[dmalloc=false])
245     if test x"$dmalloc" = xyes; then
246     AC_CHECK_LIB(dmalloc,malloc,dmalloc=yes,dmalloc=no)
247     fi
248     if test x"$dmalloc" = xyes; then
249     AC_CHECK_HEADER(dmalloc.h,dmalloc=yes,dmalloc=no)
250     fi
251     if test x"$dmalloc" = xyes ; then
252     LIB_DMALLOC=-ldmalloc
253     AC_DEFINE(DMALLOC,1,[DMalloc availability])
254     else
255     LIB_DMALLOC=
256     fi
257     AC_SUBST(LIB_DMALLOC)
258 frodo 21
259 frodo 2 dnl With and without functions
260 frodo 193 AC_ARG_ENABLE(xhtml-docs,
261     [ --disable-xhtml-docs Disable generation of XHTML docs (default: on)],
262 frodo 2 [case "${enableval}" in
263 frodo 193 yes) xhtmldocs=true ;;
264     no) xhtmldocs=false ;;
265     *) AC_MSG_ERROR(bad value ${enableval} for --enable-xhtml-docs) ;;
266     esac],[xhtmldocs=true])
267     AM_CONDITIONAL(XHTMLDOCS,test x$xhtmldocs = xtrue)
268 frodo 2
269     AC_ARG_ENABLE(html4-docs,
270     [ --enable-html4-docs Enable generation of HTML 4 docs (default: off)],
271     [case "${enableval}" in
272     yes) html4docs=true ;;
273     no) html4docs=false ;;
274     *) AC_MSG_ERROR(bad value ${enableval} for --enable-html4-docs) ;;
275     esac],[html4docs=false])
276     AM_CONDITIONAL(HTML4DOCS,test x$html4docs = xtrue)
277    
278     AC_ARG_ENABLE(ascii-docs,
279     [ --enable-ascii-docs Enable generation of ASCII docs (default: off)],
280     [case "${enableval}" in
281     yes) asciidocs=true ;;
282     no) asciidocs=false ;;
283     *) AC_MSG_ERROR(bad value ${enableval} for --enable-ascii-docs) ;;
284     esac],[asciidocs=false])
285     AM_CONDITIONAL(ASCIIDOCS,test x$asciidocs = xtrue)
286    
287 frodo 197 AC_ARG_WITH(etcdir,
288     [ --with-etcdir=DIR Set configfile dir (default: SYSCONFDIR/psiconv)],
289     [PSICONVETCDIR=${withval}],
290     [PSICONVETCDIR=${sysconfdir}/psiconv])
291     AC_SUBST(PSICONVETCDIR)
292    
293     AC_ARG_WITH(imagemagick,
294     [ --with-imagemagick enable ImageMagick (default = yes)],
295     [IMAGEMAGICK=$withval],
296     [IMAGEMAGICK='yes'])
297    
298 frodo 350 AC_CONFIG_FILES([Makefile compat/Makefile lib/Makefile lib/psiconv/Makefile lib/psiconv/psiconv.conf.man 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])
299 frodo 116 AC_OUTPUT

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