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.3.2)
39 dnl libtool versioning
47 LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
48 AC_SUBST(LT_VERSION_INFO)
50 LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
51 AC_SUBST(LT_CURRENT_MINUS_AGE)
53 dnl ==========================================================================
55 AM_CONFIG_HEADER(config.h)
64 dnl ==========================================================================
73 AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
75 if test "$os_win32" = "yes"; then
76 AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
78 AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
82 if test "x$GCC" = "xyes"; then
83 WARN_CFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes \
84 -Wmissing-prototypes -Wmissing-declarations \
85 -Wnested-externs -fno-strict-aliasing"
89 dnl ==========================================================================
91 AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
93 dnl ==========================================================================
95 # Setup for compiling build tools (fc-glyphname, etc)
96 AC_MSG_CHECKING([for a C compiler for build tools])
97 if test $cross_compiling = yes; then
98 AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
102 AC_MSG_RESULT([$CC_FOR_BUILD])
103 AC_SUBST(CC_FOR_BUILD)
105 AC_MSG_CHECKING([for suffix of executable build tools])
106 if test $cross_compiling = yes; then
107 cat >conftest.c <<\_______EOF
115 compile="$CC_FOR_BUILD conftest.c -o conftest$i"
116 if AC_TRY_EVAL(compile); then
117 if (./conftest) 2>&AC_FD_CC; then
124 if test "${EXEEXT_FOR_BUILD+set}" != set; then
125 AC_MSG_ERROR([Cannot determine suffix of executable build tools])
128 EXEEXT_FOR_BUILD=$EXEEXT
130 AC_MSG_RESULT([$EXEEXT_FOR_BUILD])
131 AC_SUBST(EXEEXT_FOR_BUILD)
133 dnl ==========================================================================
135 # Checks for header files.
138 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h iconv.h])
140 # Checks for typedefs, structures, and compiler characteristics.
144 # Checks for library functions.
146 AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long iconv])
149 # Checks for FreeType
152 AC_ARG_WITH(freetype-config, [ --with-freetype-config=PROG Use FreeType configuration program PROG], freetype_config=$withval, freetype_config=yes)
154 if test "$freetype_config" = "yes"; then
155 AC_PATH_PROG(ft_config,freetype-config,no)
156 if test "$ft_config" = "no"; then
157 AC_MSG_ERROR([You must have freetype installed; see http://www.freetype.org/])
160 ft_config="$freetype_config"
163 FREETYPE_CFLAGS="`$ft_config --cflags`"
164 FREETYPE_LIBS="`$ft_config --libs`"
166 AC_SUBST(FREETYPE_LIBS)
167 AC_SUBST(FREETYPE_CFLAGS)
170 # Check to see whether we have:
172 # FT_Get_BDF_Property
173 # FT_Get_PS_Font_Info
174 # FT_Has_PS_Glyph_Names
177 fontconfig_save_libs="$LIBS"
178 fontconfig_save_cflags="$CFLAGS"
179 LIBS="$LIBS $FREETYPE_LIBS"
180 CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
181 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)
182 AC_CHECK_MEMBER(FT_Bitmap_Size.y_ppem,
183 HAVE_FT_BITMAP_SIZE_Y_PPEM=1,
184 HAVE_FT_BITMAP_SIZE_Y_PPEM=0,
185 [#include <ft2build.h>
186 #include FT_FREETYPE_H])
187 AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,$HAVE_FT_BITMAP_SIZE_Y_PPEM,
188 [FT_Bitmap_Size structure includes y_ppem field])
189 CFLAGS="$fontconfig_save_cflags"
190 LIBS="$fontconfig_save_libs"
193 # Check expat configuration
196 AC_ARG_WITH(expat, [ --with-expat=DIR Use Expat in DIR], expat=$withval, expat=yes)
197 AC_ARG_WITH(expat-includes, [ --with-expat-includes=DIR Use Expat includes in DIR], expat_includes=$withval, expat_includes=yes)
198 AC_ARG_WITH(expat-lib, [ --with-expat-lib=DIR Use Expat library in DIR], expat_lib=$withval, expat_lib=yes)
204 case "$expat_includes" in
210 EXPAT_CFLAGS="-I$expat/include"
218 EXPAT_CFLAGS="-I$expat_includes"
228 EXPAT_LIBS="-L$expat/lib -lexpat"
235 EXPAT_LIBS="-L$expat_lib -lexpat"
239 expatsaved_CPPFLAGS="$CPPFLAGS"
240 CPPFLAGS="$CPPFLAGS $EXPAT_CFLAGS"
241 expatsaved_LIBS="$LIBS"
242 LIBS="$LIBS $EXPAT_LIBS"
244 AC_CHECK_HEADER(expat.h)
245 case "$ac_cv_header_expat_h" in
247 AC_CHECK_HEADER(xmlparse.h)
248 case "$ac_cv_header_xmlparse_h" in
250 have_expat_header=no;
254 AC_SUBST(HAVE_XMLPARSE_H)
255 AC_DEFINE_UNQUOTED(HAVE_XMLPARSE_H,$HAVE_XMLPARSE_H,
256 [Use xmlparse.h instead of expat.h])
257 have_expat_header=yes
262 have_expat_header=yes
265 case "$have_expat_header" in
270 AC_CHECK_FUNCS(XML_SetDoctypeDeclHandler)
271 case "$ac_cv_func_XML_SetDoctypeDeclHandler" in
275 AC_DEFINE_UNQUOTED(HAVE_EXPAT,$HAVE_EXPAT,
276 [Found a useable expat library])
284 CPPFLAGS="$expatsaved_CPPFLAGS"
285 LIBS="$expatsaved_LIBS"
289 AC_SUBST(EXPAT_CFLAGS)
293 AC_MSG_ERROR([Cannot find usable expat library. This could mean that your version is too old.])
298 # Set default font directory
301 AC_ARG_WITH(default-fonts, [ --with-default-fonts=DIR Use fonts from DIR when config is busted], default_fonts="$withval", default_fonts=yes)
303 case "$default_fonts" in
305 if test "$os_win32" = "yes"; then
306 FC_DEFAULT_FONTS="WINDOWSFONTDIR"
307 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "WINDOWSFONTDIR",
308 [Windows font directory])
310 FC_DEFAULT_FONTS="/usr/share/fonts"
311 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "/usr/share/fonts",
312 [System font directory])
316 FC_DEFAULT_FONTS="$default_fonts"
317 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "$default_fonts",
318 [System font directory])
322 AC_SUBST(FC_DEFAULT_FONTS)
325 # Add more fonts if available. By default, add only the directories
326 # with outline fonts; those with bitmaps can be added as desired in
327 # local.conf or ~/.fonts.conf
329 AC_ARG_WITH(add-fonts, [ --with-add-fonts=DIR1,DIR2,...Find additional fonts in DIR1,DIR2,... ], add_fonts="$withval", add_fonts=yes)
334 for dir in /usr/X11R6/lib/X11 /usr/X11/lib/X11 /usr/lib/X11; do
335 case x"$FC_ADD_FONTS" in
338 if test -d "$sub"; then
339 case x$FC_ADD_FONTS in
344 FC_ADD_FONTS="$FC_ADD_FONTS,$sub"
351 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
357 FC_ADD_FONTS="$add_fonts"
358 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
362 AC_SUBST(FC_ADD_FONTS)
366 case "$FC_ADD_FONTS" in
370 FC_FONTPATH=`echo $FC_ADD_FONTS |
371 sed -e 's/^/<dir>/' -e 's/$/<\/dir>/' -e 's/,/<\/dir> <dir>/g'`
375 AC_SUBST(FC_FONTPATH)
377 FC_FONTDATE=`LC_ALL=C date`
379 AC_SUBST(FC_FONTDATE)
381 AC_ARG_WITH(confdir, [ --with-confdir=DIR Use DIR to store configuration files (default /etc/fonts)], confdir="$withval", confdir=yes)
384 # Set CONFDIR and FONTCONFIG_PATH
389 confdir='${sysconfdir}'/fonts
396 AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR",[Font configuration directory])
400 # Find out what language orthographies are included
403 ORTH_FILES=`cd ${srcdir}/fc-lang && echo *.orth`
407 # Let people not build/install docs if they don't have docbook
410 AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
412 AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)
416 # Check if docs exist or can be created
418 if test x$HASDOCBOOK = xno; then
419 if test -f doc/fonts-conf.5; then
426 AC_ARG_ENABLE(docs, [ --disable-docs Don't build and install documentation],,enable_docs=$default_docs)
428 AM_CONDITIONAL(ENABLE_DOCS, test "x$enable_docs" = xyes)
430 if test "x$enable_docs" = xyes; then
433 cat $srcdir/doc/*.fncs | awk '
434 /^@TITLE@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
435 /^@FUNC@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
436 /^@@/ { done = 0; }' > $tmp
437 DOCMAN3=`cat $tmp | awk '{ printf ("%s.3 ", $1); }'`
438 echo DOCMAN3 $DOCMAN3
449 # Figure out where to install documentation
452 AC_ARG_WITH(docdir, [ --with-docdir=DIR Use DIR to store documentation files (default ${datadir}/doc/fontconfig)], confdir="$withval")
454 if test "x$with_docdir" = "x" ; then
455 DOCDIR='${datadir}/doc/fontconfig'
466 fc-glyphname/Makefile