4 dnl Copyright © 2003 Keith Packard
6 dnl Permission to use, copy, modify, distribute, and sell this software and its
7 dnl documentation for any purpose is hereby granted without fee, provided that
8 dnl the above copyright notice appear in all copies and that both that
9 dnl copyright notice and this permission notice appear in supporting
10 dnl documentation, and that the name of Keith Packard not be used in
11 dnl advertising or publicity pertaining to distribution of the software without
12 dnl specific, written prior permission. Keith Packard makes no
13 dnl representations about the suitability of this software for any purpose. It
14 dnl is provided "as is" without express or implied warranty.
16 dnl KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 dnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 dnl EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 dnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 dnl DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 dnl TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 dnl PERFORMANCE OF THIS SOFTWARE.
24 dnl Process this file with autoconf to create configure.
28 dnl ==========================================================================
30 dnl ==========================================================================
32 dnl This is the package version number, not the shared library
33 dnl version. This same version number must appear in fontconfig/fontconfig.h
34 dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
35 dnl not possible to extract the version number here from fontconfig.h
36 AM_INIT_AUTOMAKE(fontconfig, 2.5.91)
39 dnl libtool versioning
41 dnl bump revision when fixing bugs
42 dnl bump current and age, reset revision to zero when adding APIs
43 dnl bump current, leave age, reset revision to zero when changing/removing APIS
46 AC_SUBST(LIBT_CURRENT)
47 AC_SUBST(LIBT_REVISION)
50 LIBT_VERSION_INFO="$LIBT_CURRENT:$LIBT_REVISION:$LIBT_AGE"
51 AC_SUBST(LIBT_VERSION_INFO)
53 LIBT_CURRENT_MINUS_AGE=`expr $LIBT_CURRENT - $LIBT_AGE`
54 AC_SUBST(LIBT_CURRENT_MINUS_AGE)
56 dnl ==========================================================================
58 AM_CONFIG_HEADER(config.h)
68 dnl ==========================================================================
77 AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
79 if test "$os_win32" = "yes"; then
80 AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
82 AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
85 if test "x$GCC" = "xyes"; then
86 WARN_CFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes \
87 -Wmissing-prototypes -Wmissing-declarations \
88 -Wnested-externs -fno-strict-aliasing"
89 AC_DEFINE_UNQUOTED(HAVE_WARNING_CPP_DIRECTIVE,1,
90 [Can use #warning in C files])
95 dnl ==========================================================================
97 AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
99 dnl ==========================================================================
101 # Setup for compiling build tools (fc-glyphname, etc)
102 AC_MSG_CHECKING([for a C compiler for build tools])
103 if test $cross_compiling = yes; then
104 AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
108 AC_MSG_RESULT([$CC_FOR_BUILD])
109 AC_SUBST(CC_FOR_BUILD)
111 AC_MSG_CHECKING([for suffix of executable build tools])
112 if test $cross_compiling = yes; then
113 cat >conftest.c <<\_______EOF
121 compile="$CC_FOR_BUILD conftest.c -o conftest$i"
122 if AC_TRY_EVAL(compile); then
123 if (./conftest) 2>&AC_FD_CC; then
130 if test "${EXEEXT_FOR_BUILD+set}" != set; then
131 AC_MSG_ERROR([Cannot determine suffix of executable build tools])
134 EXEEXT_FOR_BUILD=$EXEEXT
136 AC_MSG_RESULT([$EXEEXT_FOR_BUILD])
137 AC_SUBST(EXEEXT_FOR_BUILD)
139 dnl ==========================================================================
141 AC_ARG_WITH(arch, [ --with-arch=ARCH Force architecture to ARCH], arch="$withval", arch=auto)
143 if test $cross_compiling = yes; then
146 AC_MSG_ERROR([Cannot autodetect architecture in cross compile environment]
147 [Use --with-arch=ARCH to specify architecture])
153 AC_SUBST(ARCHITECTURE)
155 dnl ==========================================================================
157 # Checks for header files.
160 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
162 # Checks for typedefs, structures, and compiler characteristics.
167 # Checks for library functions.
170 AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long sysconf ftruncate chsize rand random lrand48])
175 AC_MSG_CHECKING([for a usable iconv])
177 AC_TRY_LINK([#include <iconv.h>],
178 [iconv_open ("from", "to");],
181 if test x$use_iconv = x1; then
182 AC_MSG_RESULT([libc])
185 fontconfig_save_libs="$LIBS"
188 AC_TRY_LINK([#include <iconv.h>],
189 [iconv_open ("from", "to");],
193 if test x$use_iconv = x1; then
195 AC_MSG_RESULT([libiconv])
200 LIBS="$fontconfig_save_libs"
203 AC_DEFINE_UNQUOTED(USE_ICONV,$use_iconv,[Use iconv.])
206 # Checks for FreeType
209 AC_ARG_WITH(freetype-config, [ --with-freetype-config=PROG Use FreeType configuration program PROG], freetype_config=$withval, freetype_config=yes)
211 if test "$freetype_config" = "yes"; then
212 AC_PATH_PROG(ft_config,freetype-config,no)
213 if test "$ft_config" = "no"; then
214 AC_MSG_ERROR([You must have freetype installed; see http://www.freetype.org/])
217 ft_config="$freetype_config"
220 FREETYPE_CFLAGS="`$ft_config --cflags`"
221 FREETYPE_LIBS="`$ft_config --libs`"
223 AC_SUBST(FREETYPE_LIBS)
224 AC_SUBST(FREETYPE_CFLAGS)
227 # Check to see whether we have:
229 # FT_Get_BDF_Property
230 # FT_Get_PS_Font_Info
231 # FT_Has_PS_Glyph_Names
234 fontconfig_save_libs="$LIBS"
235 fontconfig_save_cflags="$CFLAGS"
236 LIBS="$LIBS $FREETYPE_LIBS"
237 CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
238 AC_CHECK_FUNCS(FT_Get_Next_Char FT_Get_BDF_Property FT_Get_PS_Font_Info FT_Has_PS_Glyph_Names FT_Get_X11_Font_Format)
239 AC_CHECK_MEMBER(FT_Bitmap_Size.y_ppem,
240 HAVE_FT_BITMAP_SIZE_Y_PPEM=1,
241 HAVE_FT_BITMAP_SIZE_Y_PPEM=0,
242 [#include <ft2build.h>
243 #include FT_FREETYPE_H])
244 AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,$HAVE_FT_BITMAP_SIZE_Y_PPEM,
245 [FT_Bitmap_Size structure includes y_ppem field])
246 CFLAGS="$fontconfig_save_cflags"
247 LIBS="$fontconfig_save_libs"
250 # Check expat configuration
253 AC_ARG_WITH(expat, [ --with-expat=DIR Use Expat in DIR], expat=$withval, expat=yes)
254 AC_ARG_WITH(expat-includes, [ --with-expat-includes=DIR Use Expat includes in DIR], expat_includes=$withval, expat_includes=yes)
255 AC_ARG_WITH(expat-lib, [ --with-expat-lib=DIR Use Expat library in DIR], expat_lib=$withval, expat_lib=yes)
257 if test "$enable_libxml2" != "yes"; then
262 case "$expat_includes" in
268 EXPAT_CFLAGS="-I$expat/include"
276 EXPAT_CFLAGS="-I$expat_includes"
286 EXPAT_LIBS="-L$expat/lib -lexpat"
293 EXPAT_LIBS="-L$expat_lib -lexpat"
297 expatsaved_CPPFLAGS="$CPPFLAGS"
298 CPPFLAGS="$CPPFLAGS $EXPAT_CFLAGS"
299 expatsaved_LIBS="$LIBS"
300 LIBS="$LIBS $EXPAT_LIBS"
302 AC_CHECK_HEADER(expat.h)
303 case "$ac_cv_header_expat_h" in
305 AC_CHECK_HEADER(xmlparse.h)
306 case "$ac_cv_header_xmlparse_h" in
308 have_expat_header=no;
312 AC_SUBST(HAVE_XMLPARSE_H)
313 AC_DEFINE_UNQUOTED(HAVE_XMLPARSE_H,$HAVE_XMLPARSE_H,
314 [Use xmlparse.h instead of expat.h])
315 have_expat_header=yes
320 have_expat_header=yes
323 case "$have_expat_header" in
328 AC_CHECK_FUNCS(XML_SetDoctypeDeclHandler)
329 case "$ac_cv_func_XML_SetDoctypeDeclHandler" in
333 AC_DEFINE_UNQUOTED(HAVE_EXPAT,$HAVE_EXPAT,
334 [Found a useable expat library])
342 CPPFLAGS="$expatsaved_CPPFLAGS"
343 LIBS="$expatsaved_LIBS"
347 AC_SUBST(EXPAT_CFLAGS)
355 AC_MSG_WARN([Cannot find usable expat library. Trying to use libxml2 as fallback.])
361 # Check libxml2 configuration
364 AC_ARG_ENABLE(libxml2, [ --enable-libxml2 Use libxml2 instead of Expat])
368 if test "$enable_libxml2" = "yes" -o "$expat" = "no"; then
369 PKG_CHECK_MODULES([LIBXML2], [libxml-2.0 >= 2.6])
370 AC_DEFINE_UNQUOTED(ENABLE_LIBXML2,1,[Use libxml2 instead of Expat])
372 AC_SUBST(LIBXML2_CFLAGS)
373 AC_SUBST(LIBXML2_LIBS)
377 # Set default font directory
380 AC_ARG_WITH(default-fonts, [ --with-default-fonts=DIR Use fonts from DIR when config is busted], default_fonts="$withval", default_fonts=yes)
382 case "$default_fonts" in
384 if test "$os_win32" = "yes"; then
385 FC_DEFAULT_FONTS="WINDOWSFONTDIR"
386 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "WINDOWSFONTDIR",
387 [Windows font directory])
389 FC_DEFAULT_FONTS="/usr/share/fonts"
390 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "/usr/share/fonts",
391 [System font directory])
395 FC_DEFAULT_FONTS="$default_fonts"
396 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "$default_fonts",
397 [System font directory])
401 AC_SUBST(FC_DEFAULT_FONTS)
404 # Add more fonts if available. By default, add only the directories
405 # with outline fonts; those with bitmaps can be added as desired in
406 # local.conf or ~/.fonts.conf
408 AC_ARG_WITH(add-fonts, [ --with-add-fonts=DIR1,DIR2,...Find additional fonts in DIR1,DIR2,... ], add_fonts="$withval", add_fonts=yes)
413 for dir in /usr/X11R6/lib/X11 /usr/X11/lib/X11 /usr/lib/X11; do
414 case x"$FC_ADD_FONTS" in
417 if test -d "$sub"; then
418 case x$FC_ADD_FONTS in
423 FC_ADD_FONTS="$FC_ADD_FONTS,$sub"
430 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
436 FC_ADD_FONTS="$add_fonts"
437 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
441 AC_SUBST(FC_ADD_FONTS)
445 case "$FC_ADD_FONTS" in
449 FC_FONTPATH=`echo $FC_ADD_FONTS |
450 sed -e 's/^/<dir>/' -e 's/$/<\/dir>/' -e 's/,/<\/dir> <dir>/g'`
454 AC_SUBST(FC_FONTPATH)
457 # Set default cache directory path
459 AC_ARG_WITH(cache-dir, [ --with-cache-dir=DIR Use DIR to store cache files (default /var/cache/fontconfig)], fc_cachedir="$withval", fc_cachedir=yes)
463 if test "$os_win32" = "yes"; then
464 fc_cachedir="WINDOWSTEMPDIR_FONTCONFIG_CACHE"
466 fc_cachedir=`eval echo "${localstatedir}/cache/"${PACKAGE}`
472 AC_SUBST(fc_cachedir)
473 FC_CACHEDIR=${fc_cachedir}
474 AC_SUBST(FC_CACHEDIR)
476 FC_FONTDATE=`LC_ALL=C date`
478 AC_SUBST(FC_FONTDATE)
480 AC_ARG_WITH(confdir, [ --with-confdir=DIR Use DIR to store configuration files (default /etc/fonts)], confdir="$withval", confdir=yes)
483 # Set CONFDIR and FONTCONFIG_PATH
488 confdir='${sysconfdir}'/fonts
495 AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR",[Font configuration directory])
499 # Find out what language orthographies are included
502 ORTH_FILES=`cd ${srcdir}/fc-lang && echo *.orth`
506 # Let people not build/install docs if they don't have docbook
509 AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
511 AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)
515 # Check if docs exist or can be created
517 if test x$HASDOCBOOK = xno; then
518 if test -f $srcdir/doc/fonts-conf.5; then
525 AC_ARG_ENABLE(docs, [ --disable-docs Don't build and install documentation],,enable_docs=$default_docs)
527 AM_CONDITIONAL(ENABLE_DOCS, test "x$enable_docs" = xyes)
529 if test "x$enable_docs" = xyes; then
532 cat $srcdir/doc/*.fncs | awk '
533 /^@TITLE@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
534 /^@FUNC@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
535 /^@@/ { done = 0; }' > $tmp
536 DOCMAN3=`cat $tmp | awk '{ printf ("%s.3 ", $1); }'`
537 echo DOCMAN3 $DOCMAN3
548 # Figure out where to install documentation
551 AC_ARG_WITH(docdir, [ --with-docdir=DIR Use DIR to store documentation files (default ${datadir}/doc/fontconfig)], confdir="$withval")
553 if test "x$with_docdir" = "x" ; then
554 DOCDIR='${datadir}/doc/fontconfig'
566 fc-glyphname/Makefile