]> git.wh0rd.org - fontconfig.git/blame_incremental - configure.in
Bug 44826 - <alias> must contain only a single <family>
[fontconfig.git] / configure.in
... / ...
CommitLineData
1dnl
2dnl fontconfig/configure.in
3dnl
4dnl Copyright © 2003 Keith Packard
5dnl
6dnl Permission to use, copy, modify, distribute, and sell this software and its
7dnl documentation for any purpose is hereby granted without fee, provided that
8dnl the above copyright notice appear in all copies and that both that
9dnl copyright notice and this permission notice appear in supporting
10dnl documentation, and that the name of the author(s) not be used in
11dnl advertising or publicity pertaining to distribution of the software without
12dnl specific, written prior permission. The authors make no
13dnl representations about the suitability of this software for any purpose. It
14dnl is provided "as is" without express or implied warranty.
15dnl
16dnl THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17dnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18dnl EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19dnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20dnl DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21dnl TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22dnl PERFORMANCE OF THIS SOFTWARE.
23dnl
24dnl Process this file with autoconf to create configure.
25
26AC_INIT(fonts.dtd)
27
28dnl ==========================================================================
29dnl Versioning
30dnl ==========================================================================
31
32dnl This is the package version number, not the shared library
33dnl version. This same version number must appear in fontconfig/fontconfig.h
34dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
35dnl not possible to extract the version number here from fontconfig.h
36AM_INIT_AUTOMAKE(fontconfig, 2.8.90)
37m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
38
39dnl libtool versioning
40
41dnl bump revision when fixing bugs
42dnl bump current and age, reset revision to zero when adding APIs
43dnl bump current, leave age, reset revision to zero when changing/removing APIS
44LIBT_CURRENT=5
45LIBT_REVISION=4
46AC_SUBST(LIBT_CURRENT)
47AC_SUBST(LIBT_REVISION)
48LIBT_AGE=4
49
50LIBT_VERSION_INFO="$LIBT_CURRENT:$LIBT_REVISION:$LIBT_AGE"
51AC_SUBST(LIBT_VERSION_INFO)
52
53LIBT_CURRENT_MINUS_AGE=`expr $LIBT_CURRENT - $LIBT_AGE`
54AC_SUBST(LIBT_CURRENT_MINUS_AGE)
55
56dnl ==========================================================================
57
58AC_CONFIG_HEADERS(config.h)
59
60AC_PROG_CC
61AC_PROG_INSTALL
62AC_PROG_LN_S
63AC_LIBTOOL_WIN32_DLL
64AM_PROG_LIBTOOL
65AC_PROG_MAKE_SET
66
67dnl ==========================================================================
68
69case "$host" in
70 *-*-mingw*)
71 os_win32=yes
72 ;;
73 *)
74 os_win32=no
75esac
76AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
77
78if test "$os_win32" = "yes"; then
79 AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
80fi
81AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
82
83WARN_CFLAGS=""
84if test "x$GCC" = "xyes"; then
85 WARN_CFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes \
86 -Wmissing-prototypes -Wmissing-declarations \
87 -Wnested-externs -fno-strict-aliasing"
88 AC_DEFINE_UNQUOTED(HAVE_WARNING_CPP_DIRECTIVE,1,
89 [Can use #warning in C files])
90fi
91AC_SUBST(WARN_CFLAGS)
92
93
94dnl ==========================================================================
95
96AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
97
98dnl ==========================================================================
99
100AC_ARG_WITH(arch, [ --with-arch=ARCH Force architecture to ARCH], arch="$withval", arch=auto)
101
102if test "x$arch" != xauto; then
103 AC_DEFINE_UNQUOTED([FC_ARCHITECTURE], "$arch", [Architecture prefix to use for cache file names])
104fi
105
106
107dnl ==========================================================================
108
109# Checks for header files.
110AC_HEADER_DIRENT
111AC_HEADER_STDC
112AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
113
114# Checks for typedefs, structures, and compiler characteristics.
115AC_C_CONST
116AC_C_INLINE
117AC_TYPE_PID_T
118
119# Checks for library functions.
120AC_FUNC_VPRINTF
121AC_FUNC_MMAP
122AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long sysconf ftruncate chsize rand random lrand48])
123
124#
125# Checks for iconv
126#
127AC_MSG_CHECKING([for a usable iconv])
128ICONV_LIBS=""
129AC_TRY_LINK([#include <iconv.h>],
130 [iconv_open ("from", "to");],
131 [use_iconv=1],
132 [use_iconv=0])
133if test x$use_iconv = x1; then
134 AC_MSG_RESULT([libc])
135else
136 # try using libiconv
137 fontconfig_save_libs="$LIBS"
138 LIBS="$LIBS -liconv"
139
140 AC_TRY_LINK([#include <iconv.h>],
141 [iconv_open ("from", "to");],
142 [use_iconv=1],
143 [use_iconv=0])
144
145 if test x$use_iconv = x1; then
146 ICONV_LIBS="-liconv"
147 AC_MSG_RESULT([libiconv])
148 else
149 AC_MSG_RESULT([no])
150 fi
151
152 LIBS="$fontconfig_save_libs"
153fi
154AC_SUBST(ICONV_LIBS)
155AC_DEFINE_UNQUOTED(USE_ICONV,$use_iconv,[Use iconv.])
156
157#
158# Checks for FreeType
159#
160
161AC_ARG_WITH(freetype-config, [ --with-freetype-config=PROG Use FreeType configuration program PROG], freetype_config=$withval, freetype_config=yes)
162
163if test "$freetype_config" = "yes"; then
164 AC_PATH_PROG(ft_config,freetype-config,no)
165 if test "$ft_config" = "no"; then
166 AC_MSG_ERROR([You must have freetype installed; see http://www.freetype.org/])
167 fi
168else
169 ft_config="$freetype_config"
170fi
171
172FREETYPE_CFLAGS="`$ft_config --cflags`"
173FREETYPE_LIBS="`$ft_config --libs`"
174
175AC_SUBST(FREETYPE_LIBS)
176AC_SUBST(FREETYPE_CFLAGS)
177
178fontconfig_save_libs="$LIBS"
179fontconfig_save_cflags="$CFLAGS"
180LIBS="$LIBS $FREETYPE_LIBS"
181CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
182AC_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 FT_Select_Size)
183AC_CHECK_MEMBER(FT_Bitmap_Size.y_ppem,
184 HAVE_FT_BITMAP_SIZE_Y_PPEM=1,
185 HAVE_FT_BITMAP_SIZE_Y_PPEM=0,
186[#include <ft2build.h>
187#include FT_FREETYPE_H])
188AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,$HAVE_FT_BITMAP_SIZE_Y_PPEM,
189 [FT_Bitmap_Size structure includes y_ppem field])
190CFLAGS="$fontconfig_save_cflags"
191LIBS="$fontconfig_save_libs"
192
193#
194# Check expat configuration
195#
196
197AC_ARG_WITH(expat, [ --with-expat=DIR Use Expat in DIR], expat=$withval, expat=yes)
198AC_ARG_WITH(expat-includes, [ --with-expat-includes=DIR Use Expat includes in DIR], expat_includes=$withval, expat_includes=yes)
199AC_ARG_WITH(expat-lib, [ --with-expat-lib=DIR Use Expat library in DIR], expat_lib=$withval, expat_lib=yes)
200
201if test "$enable_libxml2" != "yes"; then
202 case "$expat" in
203 no)
204 ;;
205 *)
206 case "$expat_includes" in
207 yes)
208 case "$expat" in
209 yes)
210 ;;
211 *)
212 EXPAT_CFLAGS="-I$expat/include"
213 ;;
214 esac
215 ;;
216 no)
217 EXPAT_CFLAGS=""
218 ;;
219 *)
220 EXPAT_CFLAGS="-I$expat_includes"
221 ;;
222 esac
223 case "$expat_lib" in
224 yes)
225 case "$expat" in
226 yes)
227 EXPAT_LIBS="-lexpat"
228 ;;
229 *)
230 EXPAT_LIBS="-L$expat/lib -lexpat"
231 ;;
232 esac
233 ;;
234 no)
235 ;;
236 *)
237 EXPAT_LIBS="-L$expat_lib -lexpat"
238 ;;
239 esac
240
241 expatsaved_CPPFLAGS="$CPPFLAGS"
242 CPPFLAGS="$CPPFLAGS $EXPAT_CFLAGS"
243 expatsaved_LIBS="$LIBS"
244 LIBS="$LIBS $EXPAT_LIBS"
245
246 AC_CHECK_HEADER(expat.h)
247 case "$ac_cv_header_expat_h" in
248 no)
249 AC_CHECK_HEADER(xmlparse.h)
250 case "$ac_cv_header_xmlparse_h" in
251 no)
252 have_expat_header=no;
253 ;;
254 yes)
255 HAVE_XMLPARSE_H=1
256 AC_SUBST(HAVE_XMLPARSE_H)
257 AC_DEFINE_UNQUOTED(HAVE_XMLPARSE_H,$HAVE_XMLPARSE_H,
258 [Use xmlparse.h instead of expat.h])
259 have_expat_header=yes
260 ;;
261 esac
262 ;;
263 yes)
264 have_expat_header=yes
265 ;;
266 esac
267 case "$have_expat_header" in
268 no)
269 expat=no
270 ;;
271 yes)
272 AC_CHECK_FUNCS(XML_SetDoctypeDeclHandler)
273 case "$ac_cv_func_XML_SetDoctypeDeclHandler" in
274 yes)
275 HAVE_EXPAT=1
276 AC_SUBST(HAVE_EXPAT)
277 AC_DEFINE_UNQUOTED(HAVE_EXPAT,$HAVE_EXPAT,
278 [Found a useable expat library])
279 ;;
280 *)
281 expat=no
282 ;;
283 esac
284 ;;
285 esac
286 CPPFLAGS="$expatsaved_CPPFLAGS"
287 LIBS="$expatsaved_LIBS"
288 ;;
289 esac
290
291 AC_SUBST(EXPAT_CFLAGS)
292 AC_SUBST(EXPAT_LIBS)
293
294 case "$expat" in
295 no)
296 EXPAT_CFLAGS=""
297 EXPAT_LIBS=""
298
299 AC_MSG_WARN([Cannot find usable expat library. Trying to use libxml2 as fallback.])
300 ;;
301 esac
302fi
303
304#
305# Check libxml2 configuration
306#
307
308AC_ARG_ENABLE(libxml2, [ --enable-libxml2 Use libxml2 instead of Expat])
309
310PKG_PROG_PKG_CONFIG
311
312if test "$enable_libxml2" = "yes" -o "$expat" = "no"; then
313 PKG_CHECK_MODULES([LIBXML2], [libxml-2.0 >= 2.6])
314 AC_DEFINE_UNQUOTED(ENABLE_LIBXML2,1,[Use libxml2 instead of Expat])
315
316 AC_SUBST(LIBXML2_CFLAGS)
317 AC_SUBST(LIBXML2_LIBS)
318fi
319
320#
321# Set default font directory
322#
323
324AC_ARG_WITH(default-fonts, [ --with-default-fonts=DIR Use fonts from DIR when config is busted], default_fonts="$withval", default_fonts=yes)
325
326case "$default_fonts" in
327yes)
328 if test "$os_win32" = "yes"; then
329 FC_DEFAULT_FONTS="WINDOWSFONTDIR"
330 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "WINDOWSFONTDIR",
331 [Windows font directory])
332 else
333 FC_DEFAULT_FONTS="/usr/share/fonts"
334 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "/usr/share/fonts",
335 [System font directory])
336 fi
337 ;;
338*)
339 FC_DEFAULT_FONTS="$default_fonts"
340 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "$default_fonts",
341 [System font directory])
342 ;;
343esac
344
345AC_SUBST(FC_DEFAULT_FONTS)
346
347#
348# Add more fonts if available. By default, add only the directories
349# with outline fonts; those with bitmaps can be added as desired in
350# local.conf or ~/.fonts.conf
351#
352AC_ARG_WITH(add-fonts, [ --with-add-fonts=DIR1,DIR2,...Find additional fonts in DIR1,DIR2,... ], add_fonts="$withval", add_fonts=yes)
353
354case "$add_fonts" in
355yes)
356 FC_ADD_FONTS=""
357 for dir in /usr/X11R6/lib/X11 /usr/X11/lib/X11 /usr/lib/X11; do
358 case x"$FC_ADD_FONTS" in
359 x)
360 sub="$dir/fonts"
361 if test -d "$sub"; then
362 case x$FC_ADD_FONTS in
363 x)
364 FC_ADD_FONTS="$sub"
365 ;;
366 *)
367 FC_ADD_FONTS="$FC_ADD_FONTS,$sub"
368 ;;
369 esac
370 fi
371 ;;
372 esac
373 done
374 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
375 ;;
376no)
377 FC_ADD_FONTS=""
378 ;;
379*)
380 FC_ADD_FONTS="$add_fonts"
381 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
382 ;;
383esac
384
385AC_SUBST(FC_ADD_FONTS)
386
387FC_FONTPATH=""
388
389case "$FC_ADD_FONTS" in
390"")
391 ;;
392*)
393 FC_FONTPATH=`echo $FC_ADD_FONTS |
394 sed -e 's/^/<dir>/' -e 's/$/<\/dir>/' -e 's/,/<\/dir> <dir>/g'`
395 ;;
396esac
397
398AC_SUBST(FC_FONTPATH)
399
400#
401# Set default cache directory path
402#
403AC_ARG_WITH(cache-dir, [ --with-cache-dir=DIR Use DIR to store cache files (default LOCALSTATEDIR/cache/fontconfig)], fc_cachedir="$withval", fc_cachedir=yes)
404
405case $fc_cachedir in
406no|yes)
407 if test "$os_win32" = "yes"; then
408 fc_cachedir="WINDOWSTEMPDIR_FONTCONFIG_CACHE"
409 else
410 fc_cachedir='${localstatedir}/cache/${PACKAGE}'
411 fi
412 ;;
413*)
414 ;;
415esac
416AC_SUBST(fc_cachedir)
417FC_CACHEDIR=${fc_cachedir}
418AC_SUBST(FC_CACHEDIR)
419
420FC_FONTDATE=`LC_ALL=C date`
421
422AC_SUBST(FC_FONTDATE)
423
424AC_ARG_WITH(confdir, [ --with-confdir=DIR Use DIR to store configuration files (default SYSCONFDIR/fonts)], confdir="$withval", confdir=yes)
425
426#
427# Set CONFDIR and FONTCONFIG_PATH
428#
429
430case "$confdir" in
431no|yes)
432 confdir='${sysconfdir}'/fonts
433 ;;
434*)
435 ;;
436esac
437AC_SUBST(confdir)
438CONFDIR=${confdir}
439AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR",[Font configuration directory])
440AC_SUBST(CONFDIR)
441
442#
443# Let people not build/install docs if they don't have docbook
444#
445
446AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
447
448AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)
449
450default_docs="yes"
451#
452# Check if docs exist or can be created
453#
454if test x$HASDOCBOOK = xno; then
455 if test -f $srcdir/doc/fonts-conf.5; then
456 :
457 else
458 default_docs="no"
459 fi
460fi
461
462AC_ARG_ENABLE(docs, [ --disable-docs Don't build and install documentation],,enable_docs=$default_docs)
463
464AM_CONDITIONAL(ENABLE_DOCS, test "x$enable_docs" = xyes)
465
466if test "x$enable_docs" = xyes; then
467 DOCSRC="doc"
468 tmp=funcs.$$
469 cat $srcdir/doc/*.fncs | awk '
470 /^@TITLE@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
471 /^@FUNC@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
472 /^@@/ { done = 0; }' > $tmp
473 DOCMAN3=`cat $tmp | awk '{ printf ("%s.3 ", $1); }'`
474 echo DOCMAN3 $DOCMAN3
475 rm -f $tmp
476else
477 DOCSRC=""
478 DOCMAN3=""
479fi
480
481AC_SUBST(DOCSRC)
482AC_SUBST(DOCMAN3)
483
484
485dnl Figure out what cache format suffix to use for this architecture
486AC_C_BIGENDIAN
487AC_CHECK_SIZEOF([void *])
488AC_CHECK_ALIGNOF([double])
489
490
491
492AC_OUTPUT([
493Makefile
494fontconfig/Makefile
495fc-lang/Makefile
496fc-glyphname/Makefile
497fc-case/Makefile
498src/Makefile
499conf.d/Makefile
500fc-cache/Makefile
501fc-cat/Makefile
502fc-list/Makefile
503fc-match/Makefile
504fc-pattern/Makefile
505fc-query/Makefile
506fc-scan/Makefile
507doc/Makefile
508doc/version.sgml
509test/Makefile
510fontconfig.spec
511fontconfig.pc
512fontconfig-zip
513])