1dnl Configure a Makefile for pstoedit
2dnl initial version by Scott Pakin <scott+ps2ed_AT_pakin.org>
3
4dnl Adapting automake
5dnl By Masatake YAMATO<jet _AT_ gyve.org>
6
7dnl ------------------------------------------------------------------------
8dnl NOTE: I have tested this only on Linux/g++, Solaris/g++, and Solaris/CC,
9dnl       as those are all the systems I have access to.
10dnl ------------------------------------------------------------------------
11
12dnl Initialize Autoconf.
13AC_INIT(pstoedit,3.70,wglunz35_AT_pstoedit.net)
14AC_LANG(C++)
15dnl AC_CONFIG_AUX_DIR(config)
16AM_INIT_AUTOMAKE(pstoedit,3.70)
17AM_MAINTAINER_MODE
18AC_CONFIG_SRCDIR([src/pstoedit.h])
19AC_CONFIG_SUBDIRS(libEMF-1.0)
20AC_CONFIG_MACRO_DIR([m4])
21dnl libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
22dnl libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
23dnl libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
24
25dnl We need only C++ and no other language
26dnl seems to be broken : AC_LIBTOOL_TAGS([CXX])
27
28dnl Check for various programs the Makefile needs.
29AC_PROG_CC
30AC_PROG_CXX
31AC_PROG_AWK
32AC_PROG_YACC
33AC_PROG_INSTALL
34dnl there is not need to build the static libs if shared libs are available
35AC_DISABLE_STATIC
36
37dnl yes, we are sure to have clean DLLs under cygwin
38AC_LIBTOOL_WIN32_DLL
39
40AC_PROG_LIBTOOL
41AC_PROG_MAKE_SET
42
43AC_CONFIG_HEADER(src/pstoedit_config.h)
44
45dnl Check file command
46dnl FILECMD=""
47dnl AC_PATH_PROG(FILECMD,file)
48dnl if test -z "${FILECMD}"; then
49dnl    AC_MSG_ERROR([** Cannot find file command which is needed for libtool. Please install. ])
50dnl    exit 1
51dnl fi
52
53dnl Check Ghostscript
54GS=""
55AC_PATH_PROG(GS,gs)
56if test -z "${GS}"; then
57   AC_MSG_ERROR([** Cannot find ghostscript. If it is already installed, Check PATH.])
58else
59dnl Strip off // to / that causes troubles.
60   GS=`echo $GS | sed -e 's/\/\//\//g'`
61fi
62
63PKG_PROG_PKG_CONFIG
64
65
66AC_C_BIGENDIAN([CPPFLAGS="$CPPFLAGS -DPS_BIG_ENDIAN"], [CPPFLAGS="$CPPFLAGS -DPS_LITTLE_ENDIAN"])
67
68dnl check for directory handling
69AC_HEADER_DIRENT
70
71dnl check for the more secure versions of some functions
72AC_CHECK_FUNC([snprintf], [AC_DEFINE([HAVE_SNPRINTF], [1],
73			[Define if snprintf exists.])])
74
75
76dnl
77dnl Look for various optional libraries.
78dnl
79dnl TODO: These should be replaced by ltdl.
80HAVE_LD=no
81LIBLD_LDFLAGS=
82AC_CHECK_LIB(dl,main,[LIBLD_LDFLAGS=-ldl])
83if test -n "${LIBLD_LDFLAGS}"; then
84   HAVE_LD=yes
85fi
86AC_SUBST(LIBLD_LDFLAGS)
87
88AC_CHECK_LIB([gd],[gdImageCreateFromPng])
89
90dnl some optional packages - default is to check automatically
91dnl but the check can be disabled using --without-PACKAGE
92dnl legal PACKAGE names are:
93dnl emf, magick, libplot, swf
94
95
96AC_ARG_WITH(emf,
97[  --with-emf  enable/disable emf interface (default: enabled - use --without-emf to disable)],
98with_emf=$withval, with_emf=yes)
99AC_ARG_WITH(magick,
100[  --with-magick  enable/disable magick++ interface (default: enabled - use --without-magick to disable)],
101with_magick=$withval, with_magick=yes)
102AC_ARG_WITH(libplot,
103[  --with-libplot  enable/disable libplot interface (default: enabled - use --without-libplot to disable)],
104with_libplot=$withval, with_libplot=yes)
105AC_ARG_WITH(swf,
106[  --with-swf  enable/disable swf interface (default: enabled - use --without-swf to disable)],
107with_swf=$withval, with_swf=yes)
108AC_ARG_WITH(pptx,
109[  --with-pptx  enable/disable pptx interface (default: enabled - use --without-pptX to disable)],
110with_pptx=$withval, with_pptx=yes)
111
112
113OLD_CPPFLAGS=${CPPFLAGS}
114CPPFLAGS="$CPPFLAGS -DX_DISPLAY_MISSING"
115
116if test -f src/drvwwmf.cpp ; then
117	HAVE_PLUGINSRC=true;
118	AM_CONDITIONAL(HAVE_PLUGINSRC, true)
119else
120	HAVE_PLUGINSRC=false;
121	AM_CONDITIONAL(HAVE_PLUGINSRC, false)
122fi
123
124if test "${with_libplot}" = "yes" ; then
125dnl
126dnl Driver::libplotter
127dnl
128HAVE_LIBPLOTTER=no
129LIBPLOTTER_LDFLAGS=
130LIBPLOTTER_CFLAGS=
131dnl AC_CHECK_LIB(plotter,main,
132dnl	[LIBPLOTTER_LDFLAGS=-lplotter],,-lstdc++)
133AC_CHECK_LIB(plotter,main,
134	[LIBPLOTTER_LDFLAGS=-lplotter])
135AC_CHECK_HEADER(plotter.h,
136        [LIBPLOTTER_CFLAGS="-DHAVE_LIBPLOTTER"])
137
138if test -n "${LIBPLOTTER_LDFLAGS}" && test -n "${LIBPLOTTER_CFLAGS}"; then
139   HAVE_LIBPLOTTER=yes
140   AC_MSG_CHECKING(for version of "lib plot" )
141   dnl See if we have a 2.3 or newer lib Plot version
142   AC_TRY_COMPILE( [
143		#include <plotter.h>
144	     	typedef int Point;
145		],[ ],
146		    AC_MSG_RESULT(you seem to have a compatible version ),
147		    [LIBPLOTTER_CFLAGS="$LIBPLOTTER_CFLAGS -DOLD_LIBPLOTTER";
148		    AC_MSG_RESULT(you seem to have an older version - need at least version 2.3)])
149else
150   LIBPLOTTER_LDFLAGS=
151   LIBPLOTTER_CFLAGS=
152   AC_MSG_WARN([** libplotter driver is disabled.])
153fi
154AC_SUBST(LIBPLOTTER_LDFLAGS)
155AC_SUBST(LIBPLOTTER_CFLAGS)
156AM_CONDITIONAL(HAVE_LIBPLOTTER, test "$HAVE_LIBPLOTTER" = yes)
157else
158   AC_MSG_WARN([libplot support disabled by configure argument .])
159   AM_CONDITIONAL(HAVE_LIBPLOTTER, false )
160fi
161
162CPPFLAGS=${OLD_CPPFLAGS}
163
164
165
166
167
168AC_MSG_CHECKING(for mkstemp)
169AC_TRY_COMPILE( [#include <stdlib.h>
170		 char buffer[] = "aaaXXXXXX";
171	 	 int i = mkstemp(buffer); ],[ ],
172               [HAVE_MKSTEMP=yes;
173                MKSTEMP_CFLAGS="-DHAVE_MKSTEMP";
174                AC_MSG_RESULT(you seem to have mkstemp )],
175               [AC_MSG_RESULT(you do not have mkstemp - so will try using tempnam instead)])
176
177AC_SUBST(MKSTEMP_CFLAGS)
178
179
180
181if test "${with_swf}" = "yes" ; then
182dnl
183dnl Driver::libming
184dnl
185HAVE_LIBMING=no
186LIBMING_LDFLAGS=
187LIBMING_CFLAGS=
188
189dnl If mingpp.h is found, use it.
190AC_CHECK_LIB(ming,main,
191	[LIBMING_LDFLAGS=-lming],,-lm)
192AC_CHECK_HEADER(mingpp.h,
193	[LIBMING_CFLAGS="-DHAVE_LIBMING"])
194if test -n "${LIBMING_LDFLAGS}" && test -n "${LIBMING_CFLAGS}"; then
195   HAVE_LIBMING=yes
196   dnl legacy for old versions of ming. AC_CHECK_HEADER(util/png2dbl.c,[LIBMING_CFLAGS="$LIBMING_CFLAGS -DHAVE_LIBMINGUTIL"])
197   AC_MSG_RESULT([** libming driver is enabled.])
198else
199   LIBMING_LDFLAGS=
200   LIBMING_CFLAGS=
201   AC_MSG_WARN([** libming driver is disabled.])
202fi
203AC_SUBST(LIBMING_LDFLAGS)
204AC_SUBST(LIBMING_CFLAGS)
205AM_CONDITIONAL(HAVE_LIBMING, test "$HAVE_LIBMING" = yes)
206else
207   AC_MSG_WARN([swf support disabled by configure argument .])
208   AM_CONDITIONAL(HAVE_LIBMING, false )
209fi
210
211if test "${with_pptx}" = "yes" ; then
212dnl
213dnl Driver::libpptx
214dnl
215HAVE_LIBZIP=no
216LIBZIP_LDFLAGS=
217LIBZIP_CFLAGS=
218
219dnl If zip.h is found, use it.
220AC_ARG_WITH(libzip-lib,
221[  --with-libzip-lib=DIR           look for libzip library in dir (e.g. /usr/local/lib)],
222libzip_lib_dir=$withval, libzip_lib_dir=)
223
224AC_ARG_WITH(libzip-include,
225[  --with-libzip-include=DIR       look for libzip header in dir (e.g. /usr/local/include/libzip)],
226libzip_include_dir=$withval, libzip_include_dir=)
227
228OLD_LIBS=${LIBS}
229if test -n "${libzip_lib_dir}"; then
230   LIBS="-L${libzip_lib_dir} ${LIBS}"
231fi
232AC_CHECK_LIB(zip,zip_add,
233	[LIBZIP_LDFLAGS="-lzip -lz"],,-lz)
234LIBS=${OLD_LIBS}
235
236OLD_CPPFLAGS=${CPPFLAGS}
237if test -n "${libzip_include_dir}"; then
238   CPPFLAGS="-I${libzip_include_dir} ${CPPFLAGS}"
239fi
240AC_CHECK_HEADER(zip.h,
241	[LIBZIP_CFLAGS="-DHAVE_LIBZIP"])
242CPPFLAGS=${OLD_CPPFLAGS}
243
244if test -n "${LIBZIP_LDFLAGS}" && test -n "${LIBZIP_CFLAGS}"; then
245   HAVE_LIBZIP=yes
246   if test -n "${libzip_include_dir}"; then
247     LIBZIP_CFLAGS="-I${libzip_include_dir} ${LIBZIP_CFLAGS}"
248   fi
249   if test -n "${libzip_lib_dir}"; then
250     LIBZIP_LDFLAGS="-L${libzip_lib_dir} ${LIBZIP_LDFLAGS}"
251   fi
252   AC_MSG_RESULT([** libpptx driver is enabled.])
253else
254   LIBZIP_LDFLAGS=
255   LIBZIP_CFLAGS=
256   AC_MSG_WARN([** libpptx driver is disabled.])
257fi
258AC_SUBST(LIBZIP_LDFLAGS)
259AC_SUBST(LIBZIP_CFLAGS)
260AM_CONDITIONAL(HAVE_LIBZIP, test "$HAVE_LIBZIP" = yes)
261else
262   AC_MSG_WARN([pptx support disabled by configure argument .])
263   AM_CONDITIONAL(HAVE_LIBZIP, false )
264fi
265
266
267
268
269
270
271if test "${with_magick}" = "yes" ; then
272dnl
273dnl Driver::libmagick++
274dnl If Magick++.h is found, use it.
275dnl
276HAVE_LIBMAGICK=no
277LIBMAGICK_CFLAGS=
278LIBMAGICK_LDFLAGS=
279PSTOEDIT_GCC_OK=yes
280if test "x${CC}" = xgcc; then
281   AC_MSG_CHECKING(for gcc version)
282   GCC_VERSION=`${CC} --version`
283   changequote(,)dnl
284   GCC_MAJOR_VERSION=`echo $GCC_VERSION \
285   | sed -e "s/^\([0-9]*\)\.[0-9]*/\1/"`
286   GCC_MINOR_VERSION=`echo $GCC_VERSION \
287   | sed -e "s/^[0-9]*\.\([0-9]*\)/\1/"`
288   changequote([,])dnl
289   AC_MSG_RESULT([${GCC_MAJOR_VERSION}.${GCC_MINOR_VERSION}])
290   if test "x${GCC_MAJOR_VERSION}" = x2; then
291      PSTOEDIT_GCC_OK=no
292   fi
293fi
294
295if test "x${PSTOEDIT_GCC_OK}" = xno ; then
296      AC_MSG_WARN([** gcc version is too old to use Magick++ in pstoedit])
297      AC_MSG_WARN([** gcc version >= 3 is required.])
298      AC_MSG_WARN([** libMagick++ driver is disabled.])
299else
300      if test -n "$PKG_CONFIG"; then
301        AC_MSG_CHECKING(ImageMagick flags through pkg-config)
302	PKG_CHECK_MODULES(LIBMAGICK, Magick++,
303		HAVE_LIBMAGICK=yes
304		LIBMAGICK_CFLAGS="-DHAVE_MAGIC $LIBMAGICK_CFLAGS"
305		LIBMAGICK_LDFLAGS="$LIBMAGICK_LIBS" ,
306		echo "trying other methods for finding ImageMagick")
307      else
308	AC_PATH_PROG(MAGICK_CONFIG, Magick++-config)
309	if test -n "${MAGICK_CONFIG}"; then
310	   AC_MSG_CHECKING(for version of "GraphicsMagick++" )
311	   dnl See if we have a 1.0.6 or newer version
312	   OLD_CPPFLAGS=${CPPFLAGS}
313	   CPPFLAGS="$CPPFLAGS `Magick++-config --cppflags`"
314	   AC_TRY_COMPILE( [#include <Magick++.h>
315	            #if MagickLibVersion >= 0x000008
316	 	    int correct;
317	  	    #else
318	  	    old version of GraphicsMagick;
319	  	    #endif ],[ ],
320	  	    MAGICKCORRECTVERSION="YES";AC_MSG_RESULT(you seem to have a compatible version ),
321	  	    [AC_MSG_RESULT(you seem to have an older version - need at least version 1.0.6)])
322	   CPPFLAGS=$OLD_CPPFLAGS
323	   if test -n "${MAGICKCORRECTVERSION}"; then
324	      HAVE_LIBMAGICK=yes
325	      LIBMAGICK_CFLAGS="-DHAVE_MAGIC `Magick++-config --cppflags`"
326	      LIBMAGICK_LDFLAGS="`Magick++-config --libs` `Magick++-config --ldflags`"
327	   else
328	      AC_MSG_WARN([** libMagick++ driver is disabled because of too old version of GraphicsMagick (need at least 1.0.6).])
329	   fi
330	else
331	      AC_MSG_WARN([** libMagick++ driver is disabled.])
332	fi
333      fi
334fi
335AC_SUBST(LIBMAGICK_CFLAGS)
336AC_SUBST(LIBMAGICK_LDFLAGS)
337AM_CONDITIONAL(HAVE_LIBMAGICK, test "$HAVE_LIBMAGICK" = yes)
338else
339   AC_MSG_WARN([magick support disabled by configure argument .])
340   AM_CONDITIONAL(HAVE_LIBMAGICK, false )
341fi
342
343
344
345
346
347if test "${with_emf}" = "yes" ; then
348dnl
349dnl Driver::libEMF
350dnl Check for EMF support library
351dnl
352HAVE_LIBEMF=no
353LIBEMF_CFLAGS=
354LIBEMF_LDFLAGS=
355
356OLD_CPPFLAGS=
357OLD_LIBS=
358
359
360AC_ARG_WITH(libemf-src,
361[  --with-libemf-src=DIR           look for libEMF src in dir (e.g. /usr/local/lib)],
362libemf_lib_src=$withval, libemf_lib_src=)
363
364if test -n "${libemf_lib_src}"; then
365dnl use libemf source directly
366HAVE_LIBEMF=yes
367AM_CONDITIONAL(USE_EMFBYSOURCE, true )
368AM_CONDITIONAL(HAVE_LIBEMF, true )
369LIBEMF_CFLAGS="-DHAVE_LIBEMF -I${libemf_lib_src}/include -I${libemf_lib_src}/libemf -I${libemf_lib_src}/config "
370AC_SUBST(LIBEMF_CFLAGS)
371
372else
373AM_CONDITIONAL(USE_EMFBYSOURCE, false )
374
375AC_ARG_WITH(libemf-lib,
376[  --with-libemf-lib=DIR           look for libEMF library in dir (e.g. /usr/local/lib)],
377libemf_lib_dir=$withval, libemf_lib_dir=)
378
379AC_ARG_WITH(libemf-include,
380[  --with-libemf-include=DIR       look for libEMF header in dir (e.g. /usr/local/include/libEMF)],
381libemf_include_dir=$withval, libemf_include_dir=)
382
383OLD_LIBS=${LIBS}
384if test -n "${libemf_lib_dir}"; then
385   LIBS="-L${libemf_lib_dir} ${LIBS}"
386fi
387AC_CHECK_LIB(EMF,main, [LIBEMF_LDFLAGS="-lEMF -lm"],,-lm)
388if test -n "${LIBEMF_LDFLAGS}"; then
389  if test -n "${libemf_lib_dir}"; then
390     LIBEMF_LDFLAGS="-L${libemf_lib_dir} ${LIBEMF_LDFLAGS}"
391  fi
392else
393      AC_MSG_WARN([** Cannot find libEMF. libEMF supports are disabled.])
394fi
395LIBS=${OLD_LIBS}
396
397OLD_CPPFLAGS=${CPPFLAGS}
398if test -n "${libemf_include_dir}"; then
399   CPPFLAGS="-I${libemf_include_dir} ${CPPFLAGS}"
400fi
401AC_CHECK_HEADER(emf.h,
402		[LIBEMF_CFLAGS="-DHAVE_LIBEMF -DOLDLIBEMF"])
403AC_CHECK_HEADER(libEMF/emf.h,
404		[LIBEMF_CFLAGS="-DHAVE_LIBEMF"])
405if test -n "${LIBEMF_CFLAGS}"; then
406   if test -n "${libemf_include_dir}"; then
407	 LIBEMF_CFLAGS="-I${libemf_include_dir} ${LIBEMF_CFLAGS}"
408   fi
409else
410   AC_MSG_WARN([** Cannot find emf.h. libEMF supports are disabled.])
411fi
412CPPFLAGS=${OLD_CPPFLAGS}
413
414if test -n "${LIBEMF_LDFLAGS}" && test -n "${LIBEMF_CFLAGS}"; then
415   HAVE_LIBEMF=yes
416else
417   LIBEMF_CFLAGS=
418   LIBEMF_LDFLAGS=
419fi
420
421AC_SUBST(LIBEMF_LDFLAGS)
422AC_SUBST(LIBEMF_CFLAGS)
423AM_CONDITIONAL(HAVE_LIBEMF, test "$HAVE_LIBEMF" = yes)
424fi
425else
426   AC_MSG_WARN([EMF support disabled by configure argument .])
427   AM_CONDITIONAL(USE_EMFBYSOURCE, false )
428   AM_CONDITIONAL(HAVE_LIBEMF, false )
429fi
430
431
432
433
434
435dnl
436dnl PNG and Zlib
437dnl
438dnl OBS: HAVE_LIBPNG=no
439dnl OBS: LIBPNG_CFLAGS=
440dnl OBS: LIBPNG_LDFLAGS=
441dnl OBS: AC_MSG_CHECKING(See if we have libpng and zlib)
442dnl OBS: AC_TRY_COMPILE( [#include <png.h>
443dnl OBS: 	 	 int i = PNG_TRANSFORM_IDENTITY; ],[ ],
444dnl OBS:                [HAVE_LIBPNG=yes;
445dnl OBS:                 LIBPNG_CFLAGS="-DHAVE_LIBPNG";
446dnl OBS:                 LIBPNG_LDFLAGS="-lpng -lz ";
447dnl OBS:                 AC_MSG_RESULT(you seem to have compatible version of libpng)],
448dnl OBS:                [AC_MSG_RESULT(you either have no libpng or an old version - 1.0.8 should be ok.)])
449dnl OBS: AC_SUBST(LIBPNG_LDFLAGS)
450dnl OBS: AC_SUBST(LIBPNG_CFLAGS)
451dnl OBS: AM_CONDITIONAL(HAVE_LIBPNG, test "$HAVE_LIBPNG" = yes)
452
453dnl
454dnl C++ compiler related checking
455dnl
456
457dnl See if we need to define a "bool" type.
458AC_MSG_CHECKING(for built-in "bool" datatype)
459AC_TRY_COMPILE(,[bool testing_bool; testing_bool=true;],
460               [CXXFLAGS="$CXXFLAGS -DINTERNALBOOL"; AC_MSG_RESULT(yes)],
461               [AC_MSG_RESULT(no)])
462
463dnl Add extra, platform-specific, C++ compiler options.
464AC_MSG_CHECKING(C++ compiler model)
465if test "$GXX" = yes; then
466  if test "$host_os" = riscos; then
467    AC_MSG_RESULT([GNU on RiscOS])
468    SPECIAL_CXXFLAGS="-Wall -Dunix -Ilibgpp: -Ilibstdc: -Ilibio:"
469    LDLIBS="-rescan libgpp:o.libg++ libstdc:o.libstdc++ libio:o.libiostrea gcc:o.libgcc Unix:o.UnixLib"
470    LINK=link
471    AC_SUBST(LINK)
472    AC_SUBST(LDLIBS)
473  else
474    AC_MSG_RESULT([GNU])
475#   need to disable long long warning here because of ImageMagick using it
476    SPECIAL_CXXFLAGS="-DBUGGYGPP_NOLONGERNEEDE -pedantic -Wall -Wextra -Wuninitialized -Wswitch-default -Wunused -Wshadow -Wwrite-strings -Wcast-qual -Wpointer-arith -Wno-long-long"
477  fi
478elif test `echo "$CXX" | egrep -c 'xlC$'` -eq 1; then
479  AC_MSG_RESULT([AIX xlC])
480  SPECIAL_CXXFLAGS="-D__unix__ -g -+ -I/usr/lpp/xlC/src/nihC/aixinclude"
481elif test `echo "$CXX" | egrep -c 'cxx$'` -eq 1; then
482  AC_MSG_RESULT([OSF/1 cxx])
483  SPECIAL_CXXFLAGS="-w -define_templates"
484elif test `echo "$CXX" | egrep -c 'CC$'` -eq 1; then
485  if test "$host_os" = irix5.3; then
486    AC_MSG_RESULT([Irix 5.3])
487    SPECIAL_CXXFLAGS="-O2 -mips2 -Olimit 2400"
488  elif test "$host_os" = irix6.2; then
489    AC_MSG_RESULT([Irix 6.2])
490    SPECIAL_CXXFLAGS="-mips3 -n32 -O2 -OPT:fold_arith_limit=2500"
491  elif test "$host_vendor" = sun; then
492    AC_MSG_RESULT([Sun])
493    SPECIAL_CXXFLAGS="-w"
494  fi
495else
496  AC_MSG_RESULT(unknown)
497fi
498
499AC_ARG_ENABLE(wrapper,
500              [  --enable-wrapper=PROGRAM
501                          Wrap (i.e. prefix) compiler invocations with PROGRAM
502                          (e.g. \"insure\" or \"purify\")],
503              [CXX="$enableval $CXX"])
504AC_SUBST(SPECIAL_CXXFLAGS)
505
506dnl
507dnl Standard C++ library and C++ Runtime
508dnl
509CXX_RUNTIME_LIB=
510CXX_STD_LIB=
511if test x"$GXX" = xyes; then
512   AC_CHECK_LIB(g++,main,CXX_RUNTIME_LIB=-lg++)
513   AC_CHECK_LIB(stdc++,main,CXX_STD_LIB=-lstdc++,,${CXX_RUNTIME_LIB})
514fi
515AC_SUBST(CXX_STD_LIB)
516AC_SUBST(CXX_RUNTIME_LIB)
517
518dnl Write the resulting Makefile.
519AC_CONFIG_FILES([Makefile
520src/Makefile
521config/Makefile config/pstoedit.pc
522doc/Makefile
523m4/Makefile
524examples/Makefile
525contrib/Makefile contrib/cairo/Makefile
526contrib/java/Makefile contrib/java/java1/Makefile contrib/java/java2/Makefile
527misc/Makefile misc/swffonts/Makefile
528os2/Makefile
529msdev/Makefile othersrc/Makefile othersrc/gsdllinc/Makefile],
530[])
531
532AC_OUTPUT
533
534