core: add support for the autoverbose feature
[fbsplash.git] / core / configure.ac
blobb87e01144b45ad99f6e7a2b5c9140a5aef71041c
1 ################################################################################
2 # autoconf file for generating the splashutils' configure file.
4 # Copyright (c) 2006-2007, Michal Januszewski <spock@gentoo.org>
5 # Copyright (c) 2007, Paul Bender <pebender@gmail.com>
7 # This file is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # General Public License for more details.
16 ################################################################################
18 AC_INIT([splashutils], [1.5.4])
20 AC_SUBST([libfbsplash_version], [1:0:0])
21 AC_SUBST([libfbsplashrender_version], [1:0:0])
23 AM_INIT_AUTOMAKE([1.10 -Wno-portability])
25 AC_PREREQ(2.59)
26 AC_PROG_CC
27 AC_PROG_INSTALL
28 AC_PROG_LIBTOOL
29 AC_PROG_MKDIR_P
30 AC_PROG_LN_S
31 AC_PROG_SED
33 AS_IF(
34   [test "x${BUILD_CC}" = "x" && test "x${build_alias}" != "x"],
35   [AC_CHECK_PROG([BUILD_CC], [${build_alias}-gcc], [${build_alias}-gcc])]
37 AS_IF(
38   [test "x${BUILD_CC}" = "x"],
39   [AC_CHECK_PROG([BUILD_CC], [gcc], [gcc])]
41 AS_IF(
42   [test "x${BUILD_CC}" = "x"],
43   [AC_CHECK_PROG([BUILD_CC], [cc], [cc])]
45 AS_IF(
46   [test "x${BUILD_CC}" = "x"],
47   [BUILD_CC="\$(CC)"]
50 AC_PREFIX_DEFAULT([/usr])
52 AC_ARG_ENABLE([debug],
53   AS_HELP_STRING([--enable-debug], [do not strip files]),
54   [
55     AS_CASE(["${enableval}"],
56       [yes], [config_debug="yes"],
57       [no],  [config_debug="no"],
58              [AC_MSG_ERROR([bad value '${enableval}' for --enable-debug])]
59     )
60   ],
61   [config_debug="no"]
63 AM_CONDITIONAL([CONFIG_DEBUG], [test "x${config_debug}" = "xyes"])
65 AC_ARG_ENABLE([klibc-shared],
66   AS_HELP_STRING([--enable-klibc-shared], [link to shared klibc]),
67   [
68     AS_CASE(["${enableval}"],
69         [yes], [config_klibc_shared="yes"],
70         [no],  [config_klibc_shared="no"],
71                [AC_MSG_ERROR([bad value '${enableval}' for --enable-klibc-shared])]
72     )
73   ],
74   [config_klibc_shared="no"]
76 AM_CONDITIONAL([CONFIG_KLIBC_SHARED], [test "x${config_klibc_shared}" = "xyes"])
78 AC_ARG_ENABLE([deprecated],
79   AC_HELP_STRING([--enable-deprecated], [include support for deprecated features]),
80   [
81     AS_CASE(["${enableval}"],
82       [yes], [config_deprecated="yes"],
83       [no],  [config_deprecated="no"],
84              [AC_MSG_ERROR([bad value '${enableval}' for --enable-deprecated])]
85     )
86   ],
87   [config_deprecated="no"]
89 AM_CONDITIONAL([CONFIG_DEPRECATED], [test "x${config_deprecated}" = "xyes"])
90 AS_IF(
91   [test "x${config_deprecated}" = "xyes"],
92   [AC_DEFINE([CONFIG_DEPRECATED], [1], [Define to 1 to include support for deprecated features.])]
95 AC_ARG_ENABLE([fbcondecor],
96   AC_HELP_STRING([--disable-fbcondecor], [exclude support for fbcondecor]),
97   [
98     AS_CASE(["${enableval}"],
99        [yes], [config_fbcondecor="yes"],
100        [no],  [config_fbcondecor="no"],
101               [AC_MSG_ERROR([bad value '${enableval}' for --enable-fbcondecor])]
102     )
103   ],
104   [config_fbcondecor="yes"]
106 AM_CONDITIONAL([CONFIG_FBCON_DECOR], [test "x${config_fbcondecor}" = "xyes"])
107 AS_IF(
108   [test "x${config_fbcondecor}" = "xyes"],
109   [AC_DEFINE([CONFIG_FBCON_DECOR], [1], [Define to 1 to include support for fbcondecor (previously called fbsplash).])]
112 AC_ARG_ENABLE([helper],
113   AC_HELP_STRING([--disable-helper], [do not build kernel helper]),
114   [
115     AS_CASE(["${enableval}"],
116       [yes], [config_helper="yes"],
117       [no],  [config_helper="no"],
118              [AC_MSG_ERROR([bad value '${enableval}' for --enable-helper])]
119     )
120   ],
121   [config_helper="yes"]
123 AM_CONDITIONAL([CONFIG_HELPER], [test "x${config_helper}" = "xyes"])
124 AS_IF(
125   [test "x${config_helper}" = "xyes"],
126   [AC_DEFINE([CONFIG_HELPER], [1], [Define to 1 to build kernel helper.])]
129 AC_ARG_ENABLE([misc],
130   AC_HELP_STRING([--enable-misc], [build misc programs]),
131   [
132     AS_CASE(["${enableval}"],
133       [yes], [config_misc="yes"],
134       [no],  [config_misc="no"],
135              [AC_MSG_ERROR([bad value '${enableval}' for --enable-misc])]
136     )
137   ],
138   [config_misc="no"]
140 AM_CONDITIONAL([CONFIG_MISC], [test "x${config_misc}" = "xyes"])
141 AS_IF(
142   [test "x${config_misc}" = "xyes"],
143   [AC_DEFINE([CONFIG_MISC], [1], [Define to 1 to build misc programs.])]
146 AC_ARG_WITH([gpm],
147   AC_HELP_STRING([--without-gpm], [exclude support for GPM]),
148   [
149     AS_CASE(["${withval}"],
150       [yes], [config_gpm="yes"],
151       [no],  [config_gpm="no"],
152              [AC_MSG_ERROR([bad value '${withval}' for --with-gpm])]
153     )
154   ],
155   [config_gpm="yes"]
157 AM_CONDITIONAL([CONFIG_GPM], [test "x${config_gpm}" = "xyes"])
158 AS_IF(
159   [test "x${config_gpm}" = "xyes"],
160   [AC_DEFINE([CONFIG_GPM], [1], [Define to 1 to include support for GPM.])]
163 AC_ARG_WITH([mng],
164   AC_HELP_STRING([--with-mng], [include  support for MNG animations]),
165   [
166     AS_CASE(["${withval}"],
167       [yes], [config_mng="yes"],
168       [no],  [config_mng="no"],
169              [AC_MSG_ERROR([bad value '${withval}' for --with-mng])]
170     )
171   ],
172   [config_mng="no"]
174 AM_CONDITIONAL([CONFIG_MNG], [test "x${config_mng}" = "xyes"])
175 AS_IF(
176   [test "x${config_mng}" = "xyes"],
177   [AC_DEFINE([CONFIG_MNG], [1], [Define to 1 to include support for MNG animations.])]
180 AC_ARG_WITH([png],
181   AC_HELP_STRING([--without-png], [exclude support for PNG images]),
182   [
183     AS_CASE(["${withval}"],
184       [yes], [config_png="yes"],
185       [no],  [config_png="no"],
186              [AC_MSG_ERROR([bad value '${withval}' for --with-png])]
187     )
188   ],
189   [config_png="yes"]
191 AM_CONDITIONAL([CONFIG_PNG], [test "x${config_png}" = "xyes"])
192 AS_IF(
193   [test "x${config_png}" = "xyes"],
194   [AC_DEFINE([CONFIG_PNG], [1], [Define to 1 to include support for PNG images.])]
197 AC_ARG_WITH([ttf],
198   AC_HELP_STRING([--without-ttf], [exclude support for truetype fonts]),
199   [
200     AS_CASE(["${withval}"],
201       [yes], [config_ttf="yes"],
202       [no],  [config_ttf="no"],
203              [AC_MSG_ERROR([bad value ${withval} for --with-ttf])]
204     )
205   ],
206   [config_ttf="yes"]
208 AM_CONDITIONAL([CONFIG_TTF], [test "x${config_ttf}" = "xyes"])
209 AS_IF(
210   [test "x${config_ttf}" = "xyes"],
211   [AC_DEFINE([CONFIG_TTF], [1], [Define to 1 to include support for truetype fonts.])]
214 AC_ARG_WITH([ttf-kernel],
215   AC_HELP_STRING([--without-ttf-kernel], [exclude support for truetype fonts in kernel helper]),
216   [
217     AS_CASE(["${withval}"],
218       [yes], [config_ttf_kernel="yes"],
219       [no],  [config_ttf_kernel="no"],
220              [AC_MSG_ERROR([bad value ${withval} for --with-ttf-kernel])]
221     )
222   ],
223   [config_ttf_kernel="yes"]
225 AM_CONDITIONAL([CONFIG_TTF_KERNEL], [test "x${config_ttf_kernel}" = "xyes"])
226 AS_IF(
227   [test "x${config_ttf_kernel}" = "xyes"],
228   [AC_DEFINE([CONFIG_TTF_KERNEL], [1], [Define to 1 to include support for truetype fonts in kernel helper.])]
231 AC_ARG_WITH([klibc-compiler],
232   AS_HELP_STRING([--with-klibc-compiler], [compiler to use when building against klibc @<:@auto@:>@]),
233   [KLCC="${withval}"],
234   [
235     AS_IF(
236       [test "x${host_alias}" != "x${build_alias}"],
237       [AC_CHECK_PROG([KLCC], [${host_alias}-klcc], [${host_alias}-klcc])],
238       [AC_CHECK_PROG([KLCC], [klcc], [klcc])]
239     )
240     AS_IF(
241       [test "x${KLCC}" = "x"],
242       [AC_MSG_WARN([could not determine compiler to use when building against klibc.])]
243     )
244   ]
246 AC_SUBST([KLCC])
248 AC_ARG_WITH([freetype2-src],
249   AS_HELP_STRING([--with-freetype2-src=DIR], [freetype2 source to use when linking with klibc]),
250   [
251         AS_IF(
252           [test "`echo ${withval} | sed -e 's,^/.*,,'`" = "${withval}"],
253           [LIBFREETYPE2_SOURCE="\$(abs_top_srcdir)/${withval}"],
254           [LIBFREETYPE2_SOURCE="${withval}"]
255         )
256   ],
257   [LIBFREETYPE2_SOURCE="\$(abs_top_srcdir)/\$(LIBFREETYPE2_SOURCE_INTERNAL)"]
259 AC_SUBST([LIBFREETYPE2_SOURCE])
261 AC_ARG_WITH([jpeg-src],
262   AS_HELP_STRING([--with-jpeg-src=DIR], [jpeglib source to use when linking with klibc]),
263   [
264         AS_IF(
265           [test "`echo ${withval} | sed -e 's,^/.*,,'`" = "${withval}"],
266           [LIBJPEG_SOURCE="\$(abs_top_srcdir)/${withval}"],
267           [LIBJPEG_SOURCE="${withval}"]
268         )
269   ],
270   [LIBJPEG_SOURCE="\$(abs_top_srcdir)/\$(LIBJPEG_SOURCE_INTERNAL)"]
272 AC_SUBST([LIBJPEG_SOURCE])
274 AC_ARG_WITH([lpng-src],
275   AS_HELP_STRING([--with-lpng-src=DIR], [libpng source to use when linking with klibc]),
276   [
277         AS_IF(
278           [test "`echo ${withval} | sed -e 's,^/.*,,'`" = "${withval}"],
279           [LIBPNG_SOURCE="\$(abs_top_srcdir)/${withval}"],
280           [LIBPNG_SOURCE="${withval}"]
281         )
282   ],
283   [LIBPNG_SOURCE="\$(abs_top_srcdir)/\$(LIBPNG_SOURCE_INTERNAL)"]
285 AC_SUBST([LIBPNG_SOURCE])
287 AC_ARG_WITH([zlib-src],
288   AS_HELP_STRING([--with-zlib-src=DIR], [zlib source to use when linking with klibc]),
289   [
290         AS_IF(
291           [test "`echo ${withval} | sed -e 's,^/.*,,'`" = "${withval}"],
292           [LIBZ_SOURCE="\$(abs_top_srcdir)/${withval}"],
293           [LIBZ_SOURCE="${withval}"]
294         )
295   ],
296   [LIBZ_SOURCE="\$(abs_top_srcdir)/\$(LIBZ_SOURCE_INTERNAL)"]
298 AC_SUBST([LIBZ_SOURCE])
300 AC_ARG_WITH([essential-prefix],
301   AS_HELP_STRING([--with-essential-prefix=ESPREFIX], [install essential files in ESPREFIX @<:@/@:>@]),
302   [essential_prefix="$(echo ${withval} | sed -e 's#/$##')"],
303   [essential_prefix="/"]
305 AC_SUBST([essential_prefix])
307 AC_ARG_WITH([essential-bindir],
308   AS_HELP_STRING([--with-essential-bindir=DIR], [essential user apps directory @<:@ESPREFIX/bin@:>@]),
309   [eexecbindir="${withval}"],
310   [eexecbindir="\$(essential_prefix)/bin"]
312 AC_SUBST([eexecbindir])
314 AC_ARG_WITH([essential-sbindir],
315   AS_HELP_STRING([--with-eseential-sbindir=DIR], [essential admin apps directory @<:@ESPREFIX/sbin@:>@]),
316   [eexecsbindir="${withval}"],
317   [eexecsbindir="\$(essential_prefix)/sbin"]
319 AC_SUBST([eexecsbindir])
321 AC_ARG_WITH([essential-libdir],
322   AS_HELP_STRING([--with-essential-libdir=DIR], [essential libraries directory @<:@ESPREFIX/lib@:>@]),
323   [eexeclibdir="${withval}"],
324   [eexeclibdir="\$(essential_prefix)/lib"]
326 AC_SUBST([eexeclibdir])
328 AC_ARG_WITH([themedir],
329   AS_HELP_STRING([--with-themedir=DIR], [splash theme directory @<:@ESPREFIX/etc/splash@:>@]),
330   [themedir="${withval}"],
331   [themedir="\$(essential_prefix)/etc/splash"]
333 AC_SUBST([themedir])
335 M_CFLFAGS=
336 M_LIBS=
337 AC_CHECK_HEADER(
338   [math.h],
339   [M_CFLAGS="${M_CFLAGS}"],
340   [AC_MSG_ERROR(['math.h' header file not found.])]
342 AC_CHECK_LIB(
343   [m], [ceilf],
344   [M_LIBS="${M_LIBS} -lm"],
345   [AC_MSG_ERROR(['libm' library not found.])]
347 AC_SUBST([M_CFLAGS])
348 AC_SUBST([M_LIBS])
350 RT_CFLFAGS=
351 RT_LIBS=
352 AC_CHECK_HEADER(
353   [time.h],
354   [RT_CFLAGS="${RT_CFLAGS}"],
355   [AC_MSG_ERROR(['time.h' header file was not found.])]
357 AC_CHECK_LIB([rt], [clock_gettime],
358   [RT_LIBS="${RT_LIBS} -lrt"],
359   [AC_MSG_ERROR(['librt' library was not found.])]
361 AC_SUBST([RT_CFLAGS])
362 AC_SUBST([RT_LIBS])
364 PTHREAD_CFLFAGS=
365 PTHREAD_LIBS=
366 AC_CHECK_HEADER([pthread.h],
367   [PTHREAD_CFLAGS="${PTHREAD_CFLAGS}"],
368   [AC_MSG_ERROR(['pthread.h' header file was not found.])]
370 AC_CHECK_LIB([pthread], [pthread_create],
371   [PTHREAD_LIBS="${PTHREAD_LIBS} -lpthread"],
372   [AC_MSG_ERROR(['libpthread' library file was not found.])]
374 AC_SUBST([PTHREAD_CFLAGS])
375 AC_SUBST([PTHREAD_LIBS])
377 PTHREAD_STATIC_CFLFAGS=
378 PTHREAD_STATIC_LIBS=
379 AC_CHECK_HEADER(
380   [pthread.h],
381   [PTHREAD_STATIC_CFLFAGS="${PTHREAD_STATIC_CFLFAGS}"],
382   [AC_MSG_ERROR(['pthread.h' header file was not found.])]
384 AC_CHECK_LIB([pthread], [xxpthread_create],
385   [PTHREAD_STATIC_LIBS="${PTHREAD_STATIC_LIBS} -lpthread"],
386   [
387     AC_CHECK_LIB([pthread], [pthread_create],
388       [PTHREAD_STATIC_LIBS="${PTHREAD_STATIC_LIBS} -L\$(DESTDIR)\$(libdir)/nptl -lpthread"],
389       [
390         AC_CHECK_LIB([pthread], [pthread_create],
391           [PTHREAD_STATIC_LIBS="${PTHREAD_STATIC_LIBS} -L\$(DESTDIR)\$(elibdir)/nptl -lpthread"],
392           [AC_MSG_ERROR([the required 'libpthread' static library file not found.])],
393           [-static -L${DESTDIR}${elibdir}/nptl]
394         )
395       ],
396       [-static -L${DESTDIR}${libdir}/nptl]
397     )
398   ],
399   [-static]
401 AC_SUBST([PTHREAD_STATIC_CFLAGS])
402 AC_SUBST([PTHREAD_STATIC_LIBS])
404 AC_ARG_VAR([JPEG_CFLAGS], [C compiler flags for JPEG library, overriding autodetection])
405 AC_ARG_VAR([JPEG_LIBS], [linker flags for JPEG library, overriding autodetection])
406 AS_IF(
407   [test "x${JPEG_CFLAGS}" = "x"],
408   [
409     AC_CHECK_HEADER([jpeglib.h],
410       [JPEG_CFLAGS="${JPEG_CFLAGS}"],
411       [AC_MSG_ERROR(['jpeglib.h' header file not found.])]
412     )
413   ]
415 AS_IF(
416   [test "x${JPEG_CFLAGS}" = "no"],
417   [JPEG_CFLAGS=""]
419 AS_IF(
420   [test "x${JPEG_LIBS}" = "x"],
421   [
422     AC_CHECK_LIB([jpeg], [jpeg_set_defaults],
423       [JPEG_LIBS="${JPEG_LIBS} -ljpeg"],
424       [AC_MSG_ERROR([the required 'libjpeg' library file was not found.])]
425     )
426   ]
428 AS_IF(
429   [test "x${JPEG_LIBS}" = "no"],
430   [JPEG_LIBS=""]
432 AC_SUBST([JPEG_CFLAGS])
433 AC_SUBST([JPEG_LIBS])
435 # As needed, check GPM files and set GPM compiler flags.
436 AC_ARG_VAR([GPM_CFLAGS], [C compiler flags for GPM library, overriding autodetection])
437 AC_ARG_VAR([GPM_LIBS],   [linker flags for GPM library, overriding autodetection])
438 AS_IF(
439   [test "x${config_gpm}" = "xyes"],
440   [
441     AS_IF(
442       [test "x${GPM_CFLAGS}" = "x"],
443       [
444         AC_CHECK_HEADER(
445           [gpm.h],
446           [GPM_CFLAGS="${GPM_CFLAGS}"],
447           [AC_MSG_ERROR(['gpm.h' header file was not found.])]
448         )
449       ]
450     )
451     AS_IF(
452       [test "x${GPM_CFLAGS}" = "no"],
453       [GPM_CFLAGS=""]
454     )
455     AS_IF(
456       [test "x${GPM_LIBS}" = "x"],
457       [
458         AC_CHECK_LIB(
459           [gpm], [Gpm_Open],
460           [GPM_LIBS="${GPM_LIBS} -lgpm"],
461           [AC_MSG_ERROR(['libgpm' library file was not found.])]
462         )
463       ]
464     )
465     AS_IF(
466       [test "x${GPM_LIBS}" = "no"],
467       [GPM_LIBS=""]
468     )
469   ]
471 AC_SUBST([GPM_CFLAGS])
472 AC_SUBST([GPM_LIBS])
474 AC_ARG_VAR([MNG_CFLAGS], [C compiler flags for MNG library, overriding autodetection])
475 AC_ARG_VAR([MNG_LIBS],   [linker flags for MNG library, overriding autodetection])
476 AS_IF(
477   [test "x${config_mng}" = "xyes"],
478   [
479     AS_IF(
480       [test "x${MNG_CFLAGS}" = "x"],
481       [
482         AC_CHECK_HEADER(
483           [libmng.h],
484           [
485             MNG_CFLAGS="${MNG_CFLAGS}"
486             MNG_CFLAGS="${MNG_CFLAGS} ${JPEG_CFLAGS}"
487             MNG_CFLAGS="${MNG_CFLAGS} ${RT_CFLAGS}"
488           ],
489           [AC_MSG_ERROR(['libmng.h' header file was not found.])]
490         )
491       ]
492     )
493     AS_IF(
494       [test "x${MNG_CFLAGS}" = "xno"],
495       [MNG_CFLAGS=""]
496     )
497     AS_IF(
498       [test "x${MNG_LIBS}" = "x"],
499       [
500         AC_CHECK_LIB(
501           [mng], [mng_initialize],
502           [
503             MNG_LIBS="${MNG_LIBS} -lmng"
504             MNG_LIBS="${MNG_LIBS} ${JPEG_LIBS}"
505             MNG_LIBS="${MNG_LIBS} ${LT_LIBS}"
506             AC_CHECK_LIB([z],    [zlibVersion],    [MNG_LIBS="${MNG_LIBS} -lz"   ])
507             AC_CHECK_LIB([lcms], [cmsCloseProfile],[MNG_LIBS="${MNG_LIBS} -llcms"])
508           ],
509           [AC_MSG_ERROR(['libmng' library file was not found.])]
510         )
511       ]
512     )
513     AS_IF(
514       [test "x${MNG_LIBS}" = "xno"],
515       [MNG_LIBS=""]
516     )
517   ]
519 AC_SUBST([MNG_CFLAGS])
520 AC_SUBST([MNG_LIBS])
522 AC_ARG_VAR([PNG_CFLAGS], [C compiler flags for PNG library, overriding autodetection])
523 AC_ARG_VAR([PNG_LIBS],   [linker flags for PNG library, overriding autodetection])
525 AS_IF(
526   [test "x${config_png}" = "xyes"],
527   [
528     AS_IF(
529       [test "x${LIBPNG_CONFIG}" = "x"],
530       [AC_PATH_PROG(LIBPNG_CONFIG, libpng-config)]
531     )
532     AS_IF(
533       [test "x${LIBPNG_CONFIG}" = "xno"],
534       [LIBPNG_CONFIG=""]
535     )
536     AS_IF(
537       [test "x${PNG_CFLAGS}" = "x"],
538       [
539         AS_IF(
540           [test "x$LIBPNG_CONFIG" != "x"],
541           [PNG_CFLAGS=$(${LIBPNG_CONFIG} --static --cflags)],
542           [
543             AC_CHECK_HEADER([png.h],
544               [PNG_CFLAGS="${PNG_CFLAGS}"],
545               [AC_MSG_ERROR(['png.h' header file not found.])]
546             )
547           ]
548         )
549       ]
550     )
551     AS_IF(
552       [test "x${PNG_CFLAGS}" = "xno"],
553       [PNG_CFLAGS=""]
554     )
555     AS_IF(
556       [test "x${PNG_LIBS}" = "x"],
557       [
558         AS_IF(
559           [test "x$LIBPNG_CONFIG" != "x"],
560           [PNG_LIBS=$(${LIBPNG_CONFIG} --static --libs)],
561           [
562             AC_CHECK_LIB([png], [png_access_version_number],
563               [
564                 PNG_LIBS="${PNG_LIBS} -lpng"
565                 AC_CHECK_LIB([z], [zlibVersion],
566                   [PNG_LIBS="${PNG_LIBS} -lz"]
567                 )
568                 PNG_LIBS="${PNG_LIBS} ${M_LIBS}"
569               ],
570               [AC_MSG_ERROR(['libpng' library file not found.])]
571             )
572           ]
573         )
574       ]
575     )
576     AS_IF(
577       [test "x${PNG_LIBS}" = "xno"],
578       [PNG_LIBS=""]
579     )
580   ]
582 AC_SUBST([PNG_CFLAGS])
583 AC_SUBST([PNG_LIBS])
585 AS_IF(
586   [test "x${config_ttf}" = "xyes"],
587   [
588     PKG_CHECK_MODULES(
589       [FREETYPE2],
590       [freetype2],
591       ,
592       [AC_MSG_ERROR([freetype was not found.])]
593     )
594   ]
597 AH_TOP([#ifndef __SPLASH_CONFIG_H
598 #define __SPLASH_CONFIG_H])
599 AH_BOTTOM([#endif /* SPLASH_CONFIG_H */])
601 AC_CONFIG_HEADERS([config.h])
602 AC_CONFIG_FILES([Makefile src/Makefile libs/Makefile misc/Makefile src/test/Makefile docs/Makefile scripts/Makefile])
604 AC_OUTPUT