]> git.wh0rd.org - fontconfig.git/blame_incremental - configure.in
[fc-lang] Support excluding characters
[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 Keith Packard not be used in
11dnl advertising or publicity pertaining to distribution of the software without
12dnl specific, written prior permission. Keith Packard makes 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.0)
37m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
38AM_MAINTAINER_MODE
39
40dnl libtool versioning
41
42dnl bump revision when fixing bugs
43dnl bump current and age, reset revision to zero when adding APIs
44dnl bump current, leave age, reset revision to zero when changing/removing APIS
45LIBT_CURRENT=5
46LIBT_REVISION=4
47AC_SUBST(LIBT_CURRENT)
48AC_SUBST(LIBT_REVISION)
49LIBT_AGE=4
50
51LIBT_VERSION_INFO="$LIBT_CURRENT:$LIBT_REVISION:$LIBT_AGE"
52AC_SUBST(LIBT_VERSION_INFO)
53
54LIBT_CURRENT_MINUS_AGE=`expr $LIBT_CURRENT - $LIBT_AGE`
55AC_SUBST(LIBT_CURRENT_MINUS_AGE)
56
57dnl ==========================================================================
58
59AM_CONFIG_HEADER(config.h)
60
61AC_PROG_CC
62AC_PROG_INSTALL
63AC_PROG_LN_S
64AC_LIBTOOL_WIN32_DLL
65AM_PROG_LIBTOOL
66AC_PROG_MAKE_SET
67
68dnl ==========================================================================
69
70case "$host" in
71 *-*-mingw*)
72 os_win32=yes
73 ;;
74 *)
75 os_win32=no
76esac
77AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
78
79if test "$os_win32" = "yes"; then
80 AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
81fi
82AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
83
84WARN_CFLAGS=""
85if 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])
91fi
92AC_SUBST(WARN_CFLAGS)
93
94
95dnl ==========================================================================
96
97AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
98
99dnl ==========================================================================
100
101# Setup for compiling build tools (fc-glyphname, etc)
102AC_MSG_CHECKING([for a C compiler for build tools])
103if test $cross_compiling = yes; then
104 AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
105else
106 CC_FOR_BUILD=$CC
107fi
108AC_MSG_RESULT([$CC_FOR_BUILD])
109AC_SUBST(CC_FOR_BUILD)
110
111AC_MSG_CHECKING([for suffix of executable build tools])
112if test $cross_compiling = yes; then
113 cat >conftest.c <<\_______EOF
114int
115main ()
116{
117 exit (0);
118}
119_______EOF
120 for i in .exe ""; do
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
124 EXEEXT_FOR_BUILD=$i
125 break
126 fi
127 fi
128 done
129 rm -f conftest*
130 if test "${EXEEXT_FOR_BUILD+set}" != set; then
131 AC_MSG_ERROR([Cannot determine suffix of executable build tools])
132 fi
133else
134 EXEEXT_FOR_BUILD=$EXEEXT
135fi
136AC_MSG_RESULT([$EXEEXT_FOR_BUILD])
137AC_SUBST(EXEEXT_FOR_BUILD)
138
139dnl ==========================================================================
140
141AC_ARG_WITH(arch, [ --with-arch=ARCH Force architecture to ARCH], arch="$withval", arch=auto)
142
143if test $cross_compiling = yes; then
144 case "$arch" in
145 auto)
146 AC_MSG_ERROR([Cannot autodetect architecture in cross compile environment]
147 [Use --with-arch=ARCH to specify architecture])
148 ;;
149 esac
150fi
151
152ARCHITECTURE=$arch
153AC_SUBST(ARCHITECTURE)
154
155dnl ==========================================================================
156
157# Checks for header files.
158AC_HEADER_DIRENT
159AC_HEADER_STDC
160AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
161
162# Checks for typedefs, structures, and compiler characteristics.
163AC_C_CONST
164AC_C_INLINE
165AC_TYPE_PID_T
166
167# Checks for library functions.
168AC_FUNC_VPRINTF
169AC_FUNC_MMAP
170AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long sysconf ftruncate chsize rand random lrand48])
171
172#
173# Checks for iconv
174#
175AC_MSG_CHECKING([for a usable iconv])
176ICONV_LIBS=""
177AC_TRY_LINK([#include <iconv.h>],
178 [iconv_open ("from", "to");],
179 [use_iconv=1],
180 [use_iconv=0])
181if test x$use_iconv = x1; then
182 AC_MSG_RESULT([libc])
183else
184 # try using libiconv
185 fontconfig_save_libs="$LIBS"
186 LIBS="$LIBS -liconv"
187
188 AC_TRY_LINK([#include <iconv.h>],
189 [iconv_open ("from", "to");],
190 [use_iconv=1],
191 [use_iconv=0])
192
193 if test x$use_iconv = x1; then
194 ICONV_LIBS="-liconv"
195 AC_MSG_RESULT([libiconv])
196 else
197 AC_MSG_RESULT([no])
198 fi
199
200 LIBS="$fontconfig_save_libs"
201fi
202AC_SUBST(ICONV_LIBS)
203AC_DEFINE_UNQUOTED(USE_ICONV,$use_iconv,[Use iconv.])
204
205#
206# Checks for FreeType
207#
208
209AC_ARG_WITH(freetype-config, [ --with-freetype-config=PROG Use FreeType configuration program PROG], freetype_config=$withval, freetype_config=yes)
210
211if 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/])
215 fi
216else
217 ft_config="$freetype_config"
218fi
219
220FREETYPE_CFLAGS="`$ft_config --cflags`"
221FREETYPE_LIBS="`$ft_config --libs`"
222
223AC_SUBST(FREETYPE_LIBS)
224AC_SUBST(FREETYPE_CFLAGS)
225
226fontconfig_save_libs="$LIBS"
227fontconfig_save_cflags="$CFLAGS"
228LIBS="$LIBS $FREETYPE_LIBS"
229CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
230AC_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)
231AC_CHECK_MEMBER(FT_Bitmap_Size.y_ppem,
232 HAVE_FT_BITMAP_SIZE_Y_PPEM=1,
233 HAVE_FT_BITMAP_SIZE_Y_PPEM=0,
234[#include <ft2build.h>
235#include FT_FREETYPE_H])
236AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,$HAVE_FT_BITMAP_SIZE_Y_PPEM,
237 [FT_Bitmap_Size structure includes y_ppem field])
238CFLAGS="$fontconfig_save_cflags"
239LIBS="$fontconfig_save_libs"
240
241#
242# Check expat configuration
243#
244
245AC_ARG_WITH(expat, [ --with-expat=DIR Use Expat in DIR], expat=$withval, expat=yes)
246AC_ARG_WITH(expat-includes, [ --with-expat-includes=DIR Use Expat includes in DIR], expat_includes=$withval, expat_includes=yes)
247AC_ARG_WITH(expat-lib, [ --with-expat-lib=DIR Use Expat library in DIR], expat_lib=$withval, expat_lib=yes)
248
249if test "$enable_libxml2" != "yes"; then
250 case "$expat" in
251 no)
252 ;;
253 *)
254 case "$expat_includes" in
255 yes)
256 case "$expat" in
257 yes)
258 ;;
259 *)
260 EXPAT_CFLAGS="-I$expat/include"
261 ;;
262 esac
263 ;;
264 no)
265 EXPAT_CFLAGS=""
266 ;;
267 *)
268 EXPAT_CFLAGS="-I$expat_includes"
269 ;;
270 esac
271 case "$expat_lib" in
272 yes)
273 case "$expat" in
274 yes)
275 EXPAT_LIBS="-lexpat"
276 ;;
277 *)
278 EXPAT_LIBS="-L$expat/lib -lexpat"
279 ;;
280 esac
281 ;;
282 no)
283 ;;
284 *)
285 EXPAT_LIBS="-L$expat_lib -lexpat"
286 ;;
287 esac
288
289 expatsaved_CPPFLAGS="$CPPFLAGS"
290 CPPFLAGS="$CPPFLAGS $EXPAT_CFLAGS"
291 expatsaved_LIBS="$LIBS"
292 LIBS="$LIBS $EXPAT_LIBS"
293
294 AC_CHECK_HEADER(expat.h)
295 case "$ac_cv_header_expat_h" in
296 no)
297 AC_CHECK_HEADER(xmlparse.h)
298 case "$ac_cv_header_xmlparse_h" in
299 no)
300 have_expat_header=no;
301 ;;
302 yes)
303 HAVE_XMLPARSE_H=1
304 AC_SUBST(HAVE_XMLPARSE_H)
305 AC_DEFINE_UNQUOTED(HAVE_XMLPARSE_H,$HAVE_XMLPARSE_H,
306 [Use xmlparse.h instead of expat.h])
307 have_expat_header=yes
308 ;;
309 esac
310 ;;
311 yes)
312 have_expat_header=yes
313 ;;
314 esac
315 case "$have_expat_header" in
316 no)
317 expat=no
318 ;;
319 yes)
320 AC_CHECK_FUNCS(XML_SetDoctypeDeclHandler)
321 case "$ac_cv_func_XML_SetDoctypeDeclHandler" in
322 yes)
323 HAVE_EXPAT=1
324 AC_SUBST(HAVE_EXPAT)
325 AC_DEFINE_UNQUOTED(HAVE_EXPAT,$HAVE_EXPAT,
326 [Found a useable expat library])
327 ;;
328 *)
329 expat=no
330 ;;
331 esac
332 ;;
333 esac
334 CPPFLAGS="$expatsaved_CPPFLAGS"
335 LIBS="$expatsaved_LIBS"
336 ;;
337 esac
338
339 AC_SUBST(EXPAT_CFLAGS)
340 AC_SUBST(EXPAT_LIBS)
341
342 case "$expat" in
343 no)
344 EXPAT_CFLAGS=""
345 EXPAT_LIBS=""
346
347 AC_MSG_WARN([Cannot find usable expat library. Trying to use libxml2 as fallback.])
348 ;;
349 esac
350fi
351
352#
353# Check libxml2 configuration
354#
355
356AC_ARG_ENABLE(libxml2, [ --enable-libxml2 Use libxml2 instead of Expat])
357
358PKG_PROG_PKG_CONFIG
359
360if test "$enable_libxml2" = "yes" -o "$expat" = "no"; then
361 PKG_CHECK_MODULES([LIBXML2], [libxml-2.0 >= 2.6])
362 AC_DEFINE_UNQUOTED(ENABLE_LIBXML2,1,[Use libxml2 instead of Expat])
363
364 AC_SUBST(LIBXML2_CFLAGS)
365 AC_SUBST(LIBXML2_LIBS)
366fi
367
368#
369# Set default font directory
370#
371
372AC_ARG_WITH(default-fonts, [ --with-default-fonts=DIR Use fonts from DIR when config is busted], default_fonts="$withval", default_fonts=yes)
373
374case "$default_fonts" in
375yes)
376 if test "$os_win32" = "yes"; then
377 FC_DEFAULT_FONTS="WINDOWSFONTDIR"
378 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "WINDOWSFONTDIR",
379 [Windows font directory])
380 else
381 FC_DEFAULT_FONTS="/usr/share/fonts"
382 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "/usr/share/fonts",
383 [System font directory])
384 fi
385 ;;
386*)
387 FC_DEFAULT_FONTS="$default_fonts"
388 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "$default_fonts",
389 [System font directory])
390 ;;
391esac
392
393AC_SUBST(FC_DEFAULT_FONTS)
394
395#
396# Add more fonts if available. By default, add only the directories
397# with outline fonts; those with bitmaps can be added as desired in
398# local.conf or ~/.fonts.conf
399#
400AC_ARG_WITH(add-fonts, [ --with-add-fonts=DIR1,DIR2,...Find additional fonts in DIR1,DIR2,... ], add_fonts="$withval", add_fonts=yes)
401
402case "$add_fonts" in
403yes)
404 FC_ADD_FONTS=""
405 for dir in /usr/X11R6/lib/X11 /usr/X11/lib/X11 /usr/lib/X11; do
406 case x"$FC_ADD_FONTS" in
407 x)
408 sub="$dir/fonts"
409 if test -d "$sub"; then
410 case x$FC_ADD_FONTS in
411 x)
412 FC_ADD_FONTS="$sub"
413 ;;
414 *)
415 FC_ADD_FONTS="$FC_ADD_FONTS,$sub"
416 ;;
417 esac
418 fi
419 ;;
420 esac
421 done
422 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
423 ;;
424no)
425 FC_ADD_FONTS=""
426 ;;
427*)
428 FC_ADD_FONTS="$add_fonts"
429 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
430 ;;
431esac
432
433AC_SUBST(FC_ADD_FONTS)
434
435FC_FONTPATH=""
436
437case "$FC_ADD_FONTS" in
438"")
439 ;;
440*)
441 FC_FONTPATH=`echo $FC_ADD_FONTS |
442 sed -e 's/^/<dir>/' -e 's/$/<\/dir>/' -e 's/,/<\/dir> <dir>/g'`
443 ;;
444esac
445
446AC_SUBST(FC_FONTPATH)
447
448#
449# Set default cache directory path
450#
451AC_ARG_WITH(cache-dir, [ --with-cache-dir=DIR Use DIR to store cache files (default LOCALSTATEDIR/cache/fontconfig)], fc_cachedir="$withval", fc_cachedir=yes)
452
453case $fc_cachedir in
454no|yes)
455 if test "$os_win32" = "yes"; then
456 fc_cachedir="WINDOWSTEMPDIR_FONTCONFIG_CACHE"
457 else
458 fc_cachedir='${localstatedir}/cache/${PACKAGE}'
459 fi
460 ;;
461*)
462 ;;
463esac
464AC_SUBST(fc_cachedir)
465FC_CACHEDIR=${fc_cachedir}
466AC_SUBST(FC_CACHEDIR)
467
468FC_FONTDATE=`LC_ALL=C date`
469
470AC_SUBST(FC_FONTDATE)
471
472AC_ARG_WITH(confdir, [ --with-confdir=DIR Use DIR to store configuration files (default SYSCONFDIR/fonts)], confdir="$withval", confdir=yes)
473
474#
475# Set CONFDIR and FONTCONFIG_PATH
476#
477
478case "$confdir" in
479no|yes)
480 confdir='${sysconfdir}'/fonts
481 ;;
482*)
483 ;;
484esac
485AC_SUBST(confdir)
486CONFDIR=${confdir}
487AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR",[Font configuration directory])
488AC_SUBST(CONFDIR)
489
490#
491# Let people not build/install docs if they don't have docbook
492#
493
494AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
495
496AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)
497
498default_docs="yes"
499#
500# Check if docs exist or can be created
501#
502if test x$HASDOCBOOK = xno; then
503 if test -f $srcdir/doc/fonts-conf.5; then
504 :
505 else
506 default_docs="no"
507 fi
508fi
509
510AC_ARG_ENABLE(docs, [ --disable-docs Don't build and install documentation],,enable_docs=$default_docs)
511
512AM_CONDITIONAL(ENABLE_DOCS, test "x$enable_docs" = xyes)
513
514if test "x$enable_docs" = xyes; then
515 DOCSRC="doc"
516 tmp=funcs.$$
517 cat $srcdir/doc/*.fncs | awk '
518 /^@TITLE@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
519 /^@FUNC@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
520 /^@@/ { done = 0; }' > $tmp
521 DOCMAN3=`cat $tmp | awk '{ printf ("%s.3 ", $1); }'`
522 echo DOCMAN3 $DOCMAN3
523 rm -f $tmp
524else
525 DOCSRC=""
526 DOCMAN3=""
527fi
528
529AC_SUBST(DOCSRC)
530AC_SUBST(DOCMAN3)
531
532AC_OUTPUT([
533Makefile
534fontconfig/Makefile
535fc-lang/Makefile
536fc-glyphname/Makefile
537fc-case/Makefile
538fc-arch/Makefile
539src/Makefile
540conf.d/Makefile
541fc-cache/Makefile
542fc-cat/Makefile
543fc-list/Makefile
544fc-match/Makefile
545fc-pattern/Makefile
546fc-query/Makefile
547fc-scan/Makefile
548doc/Makefile
549doc/version.sgml
550test/Makefile
551fontconfig.spec
552fontconfig.pc
553fontconfig-zip
554])