configure.ac 17.2 KB
Newer Older
1
AC_PREREQ([2.64])
B
Minor  
Behdad Esfahbod 已提交
2
AC_INIT([HarfBuzz],
B
1.8.4  
Behdad Esfahbod 已提交
3
        [1.8.4],
4
        [https://github.com/harfbuzz/harfbuzz/issues/new],
5
        [harfbuzz],
B
Behdad Esfahbod 已提交
6
        [http://harfbuzz.org/])
7

B
Behdad Esfahbod 已提交
8
AC_CONFIG_MACRO_DIR([m4])
B
Behdad Esfahbod 已提交
9
AC_CONFIG_SRCDIR([src/harfbuzz.pc.in])
B
Behdad Esfahbod 已提交
10
AC_CONFIG_HEADERS([config.h])
11

B
Behdad Esfahbod 已提交
12
AM_INIT_AUTOMAKE([1.13.0 gnits tar-ustar dist-bzip2 no-dist-gzip -Wall no-define color-tests -Wno-portability])
13
AM_SILENT_RULES([yes])
14
AX_CODE_COVERAGE
B
Behdad Esfahbod 已提交
15

B
Minor  
Behdad Esfahbod 已提交
16
# Initialize libtool
17
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
B
Minor  
Behdad Esfahbod 已提交
18 19 20
LT_PREREQ([2.2])
LT_INIT([disable-static])

21
# Check for programs
B
Behdad Esfahbod 已提交
22
AC_USE_SYSTEM_EXTENSIONS
B
Behdad Esfahbod 已提交
23
AC_PROG_CC
B
Behdad Esfahbod 已提交
24
AC_PROG_CC_C99
B
Behdad Esfahbod 已提交
25
AM_PROG_CC_C_O
B
Behdad Esfahbod 已提交
26
AC_PROG_CXX
B
Behdad Esfahbod 已提交
27
dnl AX_CXX_COMPILE_STDCXX(11, noext, optional)
28
AC_SYS_LARGEFILE
B
Behdad Esfahbod 已提交
29
PKG_PROG_PKG_CONFIG([0.20])
30 31
AM_MISSING_PROG([RAGEL], [ragel])
AM_MISSING_PROG([GIT], [git])
B
Behdad Esfahbod 已提交
32

33
# Version
B
Behdad Esfahbod 已提交
34 35 36 37 38 39 40
m4_define(hb_version_triplet,m4_split(AC_PACKAGE_VERSION,[[.]]))
m4_define(hb_version_major,m4_argn(1,hb_version_triplet))
m4_define(hb_version_minor,m4_argn(2,hb_version_triplet))
m4_define(hb_version_micro,m4_argn(3,hb_version_triplet))
HB_VERSION_MAJOR=hb_version_major
HB_VERSION_MINOR=hb_version_minor
HB_VERSION_MICRO=hb_version_micro
41 42 43 44 45 46
HB_VERSION=AC_PACKAGE_VERSION
AC_SUBST(HB_VERSION_MAJOR)
AC_SUBST(HB_VERSION_MINOR)
AC_SUBST(HB_VERSION_MICRO)
AC_SUBST(HB_VERSION)

B
Behdad Esfahbod 已提交
47 48 49 50 51 52 53 54 55 56 57
# Libtool version
m4_define([hb_version_int],
	  m4_eval(hb_version_major*10000 + hb_version_minor*100 + hb_version_micro))
m4_if(m4_eval(hb_version_minor % 2), [1],
      dnl for unstable releases
      [m4_define([hb_libtool_revision], 0)],
      dnl for stable releases
      [m4_define([hb_libtool_revision], hb_version_micro)])
m4_define([hb_libtool_age],
	  m4_eval(hb_version_int - hb_libtool_revision))
m4_define([hb_libtool_current],
B
1.0.0  
Behdad Esfahbod 已提交
58
	  m4_eval(hb_libtool_age))
B
Behdad Esfahbod 已提交
59 60
HB_LIBTOOL_VERSION_INFO=hb_libtool_current:hb_libtool_revision:hb_libtool_age
AC_SUBST(HB_LIBTOOL_VERSION_INFO)
61

62 63 64 65 66 67
AC_ARG_WITH([libstdc++],
	[AS_HELP_STRING([--with-libstdc++=@<:@yes/no@:>@],
			[Allow linking with libstdc++ @<:@default=no@:>@])],
	[with_libstdcxx=$withval],
	[with_libstdcxx=no])
AM_CONDITIONAL(WITH_LIBSTDCXX, [test "x$with_libstdcxx" = "xyes"])
68

69 70 71
# Documentation
have_gtk_doc=false
m4_ifdef([GTK_DOC_CHECK], [
B
Behdad Esfahbod 已提交
72
GTK_DOC_CHECK([1.15],[--flavour no-tmpl])
73 74 75 76 77 78
	if test "x$enable_gtk_doc" = xyes; then
		have_gtk_doc=true
	fi
], [
	AM_CONDITIONAL([ENABLE_GTK_DOC], false)
])
79

80
# Functions and headers
B
Behdad Esfahbod 已提交
81
AC_CHECK_FUNCS(atexit mprotect sysconf getpagesize mmap isatty newlocale strtod_l posix_memalign)
82 83 84 85 86 87 88

save_libs="$LIBS"
LIBS="$LIBS -lm"
AC_CHECK_FUNCS([round], ,[AC_CHECK_DECLS([round], , ,[#include <math.h>])])
LIBS="$save_libs"

AC_CHECK_HEADERS(unistd.h sys/mman.h xlocale.h stdbool.h)
B
Behdad Esfahbod 已提交
89

B
Behdad Esfahbod 已提交
90
# Compiler flags
91
AC_CANONICAL_HOST
92
AC_CHECK_ALIGNOF([struct{char;}])
B
Behdad Esfahbod 已提交
93
if test "x$GCC" = "xyes"; then
94

95
	# Make symbols link locally
96
	AX_CHECK_LINK_FLAG([[-Bsymbolic-functions]], [LDFLAGS="$LDFLAGS -Bsymbolic-functions"])
97

98 99 100 101 102 103 104 105
	# Make it possible to not link to libstdc++
	# No threadsafe statics in C++ as we do it ourselves.
	# We don't use these features, so it's safe to disable them
	# even in the cases where we DO link to libstdc++.
	# Put -fno-rtti before $CXXFLAGS such that users can re-enable it
	# by overriding CXXFLAGS.
	CXXFLAGS="-fno-rtti $CXXFLAGS -fno-exceptions -fno-threadsafe-statics"

B
Behdad Esfahbod 已提交
106 107 108
	# Assorted warnings
	CXXFLAGS="$CXXFLAGS -Wcast-align"

B
Behdad Esfahbod 已提交
109
	case "$host" in
110
		*-*-mingw*)
B
Behdad Esfahbod 已提交
111 112 113 114 115 116 117
		;;
		*)
			# Hide inline methods
			CXXFLAGS="$CXXFLAGS -fvisibility-inlines-hidden"
		;;
	esac

118 119
	case "$host" in
		arm-*-*)
120
			if test "x$ac_cv_alignof_struct_char__" != x1; then
121 122 123
				# Request byte alignment
				CXXFLAGS="$CXXFLAGS -mstructure-size-boundary=8"
			fi
124 125
		;;
	esac
B
Behdad Esfahbod 已提交
126 127
fi

128 129
AM_CONDITIONAL(HAVE_GCC, test "x$GCC" = "xyes")

130
hb_os_win32=no
131 132 133 134 135 136 137 138 139
AC_MSG_CHECKING([for native Win32])
case "$host" in
  *-*-mingw*)
    hb_os_win32=yes
    ;;
esac
AC_MSG_RESULT([$hb_os_win32])
AM_CONDITIONAL(OS_WIN32, test "$hb_os_win32" = "yes")

B
Behdad Esfahbod 已提交
140
have_pthread=false
141 142 143
if test "$hb_os_win32" = no; then
	AX_PTHREAD([have_pthread=true])
fi
B
Behdad Esfahbod 已提交
144 145 146 147 148
if $have_pthread; then
	AC_DEFINE(HAVE_PTHREAD, 1, [Have POSIX threads])
fi
AM_CONDITIONAL(HAVE_PTHREAD, $have_pthread)

B
Behdad Esfahbod 已提交
149 150
dnl ==========================================================================

B
Shuffle  
Behdad Esfahbod 已提交
151 152 153 154 155 156
have_ot=true
if $have_ot; then
	AC_DEFINE(HAVE_OT, 1, [Have native OpenType Layout backend])
fi
AM_CONDITIONAL(HAVE_OT, $have_ot)

157 158 159 160 161 162
have_fallback=true
if $have_fallback; then
	AC_DEFINE(HAVE_FALLBACK, 1, [Have simple TrueType Layout backend])
fi
AM_CONDITIONAL(HAVE_FALLBACK, $have_fallback)

B
Shuffle  
Behdad Esfahbod 已提交
163 164
dnl ===========================================================================

B
Behdad Esfahbod 已提交
165 166
AC_ARG_WITH(glib,
	[AS_HELP_STRING([--with-glib=@<:@yes/no/auto@:>@],
B
Behdad Esfahbod 已提交
167 168
			[Use glib @<:@default=auto@:>@])],,
	[with_glib=auto])
B
Behdad Esfahbod 已提交
169
have_glib=false
170
GLIB_DEPS="glib-2.0 >= 2.19.1"
171
AC_SUBST(GLIB_DEPS)
B
Behdad Esfahbod 已提交
172
if test "x$with_glib" = "xyes" -o "x$with_glib" = "xauto"; then
173
	PKG_CHECK_MODULES(GLIB, $GLIB_DEPS, have_glib=true, :)
B
Behdad Esfahbod 已提交
174 175 176 177
fi
if test "x$with_glib" = "xyes" -a "x$have_glib" != "xtrue"; then
	AC_MSG_ERROR([glib support requested but glib-2.0 not found])
fi
178
if $have_glib; then
B
Behdad Esfahbod 已提交
179
	AC_DEFINE(HAVE_GLIB, 1, [Have glib2 library])
180
fi
B
Behdad Esfahbod 已提交
181 182
AM_CONDITIONAL(HAVE_GLIB, $have_glib)

183 184
dnl ===========================================================================

B
Behdad Esfahbod 已提交
185 186
AC_ARG_WITH(gobject,
	[AS_HELP_STRING([--with-gobject=@<:@yes/no/auto@:>@],
187
			[Use gobject @<:@default=no@:>@])],,
188
	[with_gobject=no])
B
Behdad Esfahbod 已提交
189
have_gobject=false
B
Behdad Esfahbod 已提交
190 191 192 193 194
if test "x$with_gobject" = "xyes" -o "x$with_gobject" = "xauto"; then
	PKG_CHECK_MODULES(GOBJECT, gobject-2.0 glib-2.0, have_gobject=true, :)
fi
if test "x$with_gobject" = "xyes" -a "x$have_gobject" != "xtrue"; then
	AC_MSG_ERROR([gobject support requested but gobject-2.0 / glib-2.0 not found])
B
Behdad Esfahbod 已提交
195
fi
196 197
if $have_gobject; then
	AC_DEFINE(HAVE_GOBJECT, 1, [Have gobject2 library])
198 199
	GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
	AC_SUBST(GLIB_MKENUMS)
200 201
fi
AM_CONDITIONAL(HAVE_GOBJECT, $have_gobject)
202
AC_SUBST(have_gobject)
203

B
Minor  
Behdad Esfahbod 已提交
204 205
dnl ===========================================================================

206 207 208 209 210 211

dnl ===========================================================================
# Gobject-Introspection
have_introspection=false
m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
	if $have_gobject; then
212
		GOBJECT_INTROSPECTION_CHECK([1.34.0])
213 214 215 216 217 218 219 220 221 222
		if test "x$found_introspection" = xyes; then
			have_introspection=true
		fi
	else
		AM_CONDITIONAL([HAVE_INTROSPECTION], false)
	fi
], [
	AM_CONDITIONAL([HAVE_INTROSPECTION], false)
])

B
Behdad Esfahbod 已提交
223 224
dnl ==========================================================================

B
Behdad Esfahbod 已提交
225 226 227 228 229 230
AC_ARG_WITH(cairo,
	[AS_HELP_STRING([--with-cairo=@<:@yes/no/auto@:>@],
			[Use cairo @<:@default=auto@:>@])],,
	[with_cairo=auto])
have_cairo=false
if test "x$with_cairo" = "xyes" -o "x$with_cairo" = "xauto"; then
B
Behdad Esfahbod 已提交
231
	PKG_CHECK_MODULES(CAIRO, cairo >= 1.8.0, have_cairo=true, :)
B
Behdad Esfahbod 已提交
232 233 234 235
fi
if test "x$with_cairo" = "xyes" -a "x$have_cairo" != "xtrue"; then
	AC_MSG_ERROR([cairo support requested but not found])
fi
B
Behdad Esfahbod 已提交
236 237 238 239 240
if $have_cairo; then
	AC_DEFINE(HAVE_CAIRO, 1, [Have cairo graphics library])
fi
AM_CONDITIONAL(HAVE_CAIRO, $have_cairo)

B
Behdad Esfahbod 已提交
241 242
have_cairo_ft=false
if $have_cairo; then
B
Behdad Esfahbod 已提交
243
	PKG_CHECK_MODULES(CAIRO_FT, cairo-ft, have_cairo_ft=true, :)
B
Behdad Esfahbod 已提交
244
fi
B
Behdad Esfahbod 已提交
245 246 247 248 249
if $have_cairo_ft; then
	AC_DEFINE(HAVE_CAIRO_FT, 1, [Have cairo-ft support in cairo graphics library])
fi
AM_CONDITIONAL(HAVE_CAIRO_FT, $have_cairo_ft)

B
Behdad Esfahbod 已提交
250 251
dnl ==========================================================================

B
Behdad Esfahbod 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
AC_ARG_WITH(fontconfig,
	[AS_HELP_STRING([--with-fontconfig=@<:@yes/no/auto@:>@],
			[Use fontconfig @<:@default=auto@:>@])],,
	[with_fontconfig=auto])
have_fontconfig=false
if test "x$with_fontconfig" = "xyes" -o "x$with_fontconfig" = "xauto"; then
	PKG_CHECK_MODULES(FONTCONFIG, fontconfig, have_fontconfig=true, :)
fi
if test "x$with_fontconfig" = "xyes" -a "x$have_fontconfig" != "xtrue"; then
	AC_MSG_ERROR([fontconfig support requested but not found])
fi
if $have_fontconfig; then
	AC_DEFINE(HAVE_FONTCONFIG, 1, [Have fontconfig library])
fi
AM_CONDITIONAL(HAVE_FONTCONFIG, $have_fontconfig)

dnl ==========================================================================

270
AC_ARG_WITH(icu,
271
	[AS_HELP_STRING([--with-icu=@<:@yes/no/builtin/auto@:>@],
272 273 274
			[Use ICU @<:@default=auto@:>@])],,
	[with_icu=auto])
have_icu=false
275
if test "x$with_icu" = "xyes" -o "x$with_icu" = "xbuiltin" -o "x$with_icu" = "xauto"; then
B
Behdad Esfahbod 已提交
276
	PKG_CHECK_MODULES(ICU, icu-uc, have_icu=true, :)
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294

	dnl Fallback to icu-config if ICU pkg-config files could not be found
	if test "$have_icu" != "true"; then
		AC_CHECK_TOOL(ICU_CONFIG, icu-config, no)
		AC_MSG_CHECKING([for ICU by using icu-config fallback])
		if test "$ICU_CONFIG" != "no" && "$ICU_CONFIG" --version >/dev/null; then
			have_icu=true
			# We don't use --cflags as this gives us a lot of things that we don't
			# necessarily want, like debugging and optimization flags
			# See man (1) icu-config for more info.
			ICU_CFLAGS=`$ICU_CONFIG --cppflags`
			ICU_LIBS=`$ICU_CONFIG --ldflags-searchpath --ldflags-libsonly`
			AC_SUBST(ICU_CFLAGS)
			AC_SUBST(ICU_LIBS)
			AC_MSG_RESULT([yes])
		else
			AC_MSG_RESULT([no])
		fi
295 296
	fi
fi
297
if test \( "x$with_icu" = "xyes" -o "x$with_icu" = "xbuiltin" \) -a "x$have_icu" != "xtrue"; then
298 299
	AC_MSG_ERROR([icu support requested but icu-uc not found])
fi
300

B
Behdad Esfahbod 已提交
301
if $have_icu; then
302
	CXXFLAGS="$CXXFLAGS `$PKG_CONFIG --variable=CXXFLAGS icu-uc`"
B
Behdad Esfahbod 已提交
303
	AC_DEFINE(HAVE_ICU, 1, [Have ICU library])
304 305 306
	if test "x$with_icu" = "xbuiltin"; then
		AC_DEFINE(HAVE_ICU_BUILTIN, 1, [Use hb-icu Unicode callbacks])
	fi
B
Behdad Esfahbod 已提交
307 308
fi
AM_CONDITIONAL(HAVE_ICU, $have_icu)
309 310 311 312
AM_CONDITIONAL(HAVE_ICU_BUILTIN, $have_icu && test "x$with_icu" = "xbuiltin")

dnl ===========================================================================

313 314 315 316 317 318 319
AC_ARG_WITH(ucdn,
	[AS_HELP_STRING([--with-ucdn=@<:@yes/no@:>@],
			[Use builtin UCDN library @<:@default=yes@:>@])],,
	[with_ucdn=yes])
have_ucdn=false
if test "x$with_ucdn" = "xyes"; then
	have_ucdn=true
320 321 322 323 324
fi
if $have_ucdn; then
	AC_DEFINE(HAVE_UCDN, 1, [Have UCDN Unicode functions])
fi
AM_CONDITIONAL(HAVE_UCDN, $have_ucdn)
B
Behdad Esfahbod 已提交
325

B
Behdad Esfahbod 已提交
326
dnl ==========================================================================
327

328 329 330 331 332
AC_ARG_WITH(graphite2,
	[AS_HELP_STRING([--with-graphite2=@<:@yes/no/auto@:>@],
			[Use the graphite2 library @<:@default=no@:>@])],,
	[with_graphite2=no])
have_graphite2=false
333 334
GRAPHITE2_DEPS="graphite2"
AC_SUBST(GRAPHITE2_DEPS)
335
if test "x$with_graphite2" = "xyes" -o "x$with_graphite2" = "xauto"; then
336
	PKG_CHECK_MODULES(GRAPHITE2, $GRAPHITE2_DEPS, have_graphite2=true, :)
337 338 339 340 341 342 343 344 345 346
	if test "x$have_graphite2" != "xtrue"; then
                # If pkg-config is not available, graphite2 can still be there
		ac_save_CFLAGS="$CFLAGS"
		ac_save_CPPFLAGS="$CPPFLAGS"
		CFLAGS="$CFLAGS $GRAPHITE2_CFLAGS"
		CPPFLAGS="$CPPFLAGS $GRAPHITE2_CFLAGS"
		AC_CHECK_HEADER(graphite2/Segment.h, have_graphite2=true, :)
		CPPFLAGS="$ac_save_CPPFLAGS"
		CFLAGS="$ac_save_CFLAGS"
	fi
347
fi
348 349 350 351
if test "x$with_graphite2" = "xyes" -a "x$have_graphite2" != "xtrue"; then
	AC_MSG_ERROR([graphite2 support requested but libgraphite2 not found])
fi
if $have_graphite2; then
352
	AC_DEFINE(HAVE_GRAPHITE2, 1, [Have Graphite2 library])
353 354
fi
AM_CONDITIONAL(HAVE_GRAPHITE2, $have_graphite2)
B
Behdad Esfahbod 已提交
355 356

dnl ==========================================================================
B
Behdad Esfahbod 已提交
357

B
Behdad Esfahbod 已提交
358 359 360 361 362
AC_ARG_WITH(freetype,
	[AS_HELP_STRING([--with-freetype=@<:@yes/no/auto@:>@],
			[Use the FreeType library @<:@default=auto@:>@])],,
	[with_freetype=auto])
have_freetype=false
363 364
FREETYPE_DEPS="freetype2 >= 12.0.6"
AC_SUBST(FREETYPE_DEPS)
B
Behdad Esfahbod 已提交
365
if test "x$with_freetype" = "xyes" -o "x$with_freetype" = "xauto"; then
366
	# See freetype/docs/VERSION.DLL; 12.0.6 means freetype-2.4.2
367
	PKG_CHECK_MODULES(FREETYPE, $FREETYPE_DEPS, have_freetype=true, :)
B
Behdad Esfahbod 已提交
368 369 370 371
fi
if test "x$with_freetype" = "xyes" -a "x$have_freetype" != "xtrue"; then
	AC_MSG_ERROR([FreeType support requested but libfreetype2 not found])
fi
372 373
if $have_freetype; then
	AC_DEFINE(HAVE_FREETYPE, 1, [Have FreeType 2 library])
374 375
	save_libs=$LIBS
	LIBS="$LIBS $FREETYPE_LIBS"
376
	AC_CHECK_FUNCS(FT_Get_Var_Blend_Coordinates FT_Set_Var_Blend_Coordinates FT_Done_MM_Var)
377
	LIBS=$save_libs
378
fi
B
Behdad Esfahbod 已提交
379 380
AM_CONDITIONAL(HAVE_FREETYPE, $have_freetype)

381
dnl ===========================================================================
B
Behdad Esfahbod 已提交
382

B
Behdad Esfahbod 已提交
383 384 385 386 387 388
AC_ARG_WITH(uniscribe,
	[AS_HELP_STRING([--with-uniscribe=@<:@yes/no/auto@:>@],
			[Use the Uniscribe library @<:@default=no@:>@])],,
	[with_uniscribe=no])
have_uniscribe=false
if test "x$with_uniscribe" = "xyes" -o "x$with_uniscribe" = "xauto"; then
389
	AC_CHECK_HEADERS(usp10.h windows.h, have_uniscribe=true)
B
Behdad Esfahbod 已提交
390 391 392 393
fi
if test "x$with_uniscribe" = "xyes" -a "x$have_uniscribe" != "xtrue"; then
	AC_MSG_ERROR([uniscribe support requested but not found])
fi
394 395
if $have_uniscribe; then
	UNISCRIBE_CFLAGS=
396
	UNISCRIBE_LIBS="-lusp10 -lgdi32 -lrpcrt4"
397 398
	AC_SUBST(UNISCRIBE_CFLAGS)
	AC_SUBST(UNISCRIBE_LIBS)
B
Behdad Esfahbod 已提交
399
	AC_DEFINE(HAVE_UNISCRIBE, 1, [Have Uniscribe library])
400 401 402
fi
AM_CONDITIONAL(HAVE_UNISCRIBE, $have_uniscribe)

403 404
dnl ===========================================================================

405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
AC_ARG_WITH(directwrite,
	[AS_HELP_STRING([--with-directwrite=@<:@yes/no/auto@:>@],
			[Use the DirectWrite library (experimental) @<:@default=no@:>@])],,
	[with_directwrite=no])
have_directwrite=false
AC_LANG_PUSH([C++])
if test "x$with_directwrite" = "xyes" -o "x$with_directwrite" = "xauto"; then
	AC_CHECK_HEADERS(dwrite.h, have_directwrite=true)
fi
AC_LANG_POP([C++])
if test "x$with_directwrite" = "xyes" -a "x$have_directwrite" != "xtrue"; then
	AC_MSG_ERROR([directwrite support requested but not found])
fi
if $have_directwrite; then
	DIRECTWRITE_CXXFLAGS=
	DIRECTWRITE_LIBS="-ldwrite"
	AC_SUBST(DIRECTWRITE_CXXFLAGS)
	AC_SUBST(DIRECTWRITE_LIBS)
	AC_DEFINE(HAVE_DIRECTWRITE, 1, [Have DirectWrite library])
fi
AM_CONDITIONAL(HAVE_DIRECTWRITE, $have_directwrite)

dnl ===========================================================================

B
Behdad Esfahbod 已提交
429 430 431 432 433 434 435
AC_ARG_WITH(coretext,
	[AS_HELP_STRING([--with-coretext=@<:@yes/no/auto@:>@],
			[Use CoreText @<:@default=no@:>@])],,
	[with_coretext=no])
have_coretext=false
if test "x$with_coretext" = "xyes" -o "x$with_coretext" = "xauto"; then
	AC_CHECK_TYPE(CTFontRef, have_coretext=true,, [#include <ApplicationServices/ApplicationServices.h>])
436 437 438 439 440 441 442 443 444

	if $have_coretext; then
		CORETEXT_CFLAGS=
		CORETEXT_LIBS="-framework ApplicationServices"
		AC_SUBST(CORETEXT_CFLAGS)
		AC_SUBST(CORETEXT_LIBS)
	else
		# On iOS CoreText and CoreGraphics are stand-alone frameworks
		if test "x$have_coretext" != "xtrue"; then
B
Behdad Esfahbod 已提交
445 446
			# Check for a different symbol to avoid getting cached result.
			AC_CHECK_TYPE(CTRunRef, have_coretext=true,, [#include <CoreText/CoreText.h>])
447 448 449 450
		fi

		if $have_coretext; then
			CORETEXT_CFLAGS=
451
			CORETEXT_LIBS="-framework CoreText -framework CoreGraphics -framework CoreFoundation"
452 453 454 455
			AC_SUBST(CORETEXT_CFLAGS)
			AC_SUBST(CORETEXT_LIBS)
		fi
	fi
B
Behdad Esfahbod 已提交
456 457 458 459
fi
if test "x$with_coretext" = "xyes" -a "x$have_coretext" != "xtrue"; then
	AC_MSG_ERROR([CoreText support requested but libcoretext not found])
fi
460 461 462 463 464 465 466
if $have_coretext; then
	AC_DEFINE(HAVE_CORETEXT, 1, [Have Core Text backend])
fi
AM_CONDITIONAL(HAVE_CORETEXT, $have_coretext)

dnl ===========================================================================

467 468
AC_CACHE_CHECK([for Intel atomic primitives], hb_cv_have_intel_atomic_primitives, [
	hb_cv_have_intel_atomic_primitives=false
B
Behdad Esfahbod 已提交
469
	AC_TRY_LINK([
470
		void memory_barrier (void) { __sync_synchronize (); }
B
Behdad Esfahbod 已提交
471 472 473 474
		int atomic_add (int *i) { return __sync_fetch_and_add (i, 1); }
		int mutex_trylock (int *m) { return __sync_lock_test_and_set (m, 1); }
		void mutex_unlock (int *m) { __sync_lock_release (m); }
		], [], hb_cv_have_intel_atomic_primitives=true
475 476 477 478 479 480 481 482
	)
])
if $hb_cv_have_intel_atomic_primitives; then
	AC_DEFINE(HAVE_INTEL_ATOMIC_PRIMITIVES, 1, [Have Intel __sync_* atomic primitives])
fi

dnl ===========================================================================

B
Behdad Esfahbod 已提交
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
AC_CACHE_CHECK([for Solaris atomic operations], hb_cv_have_solaris_atomic_ops, [
	hb_cv_have_solaris_atomic_ops=false
	AC_TRY_LINK([
		#include <atomic.h>
		/* This requires Solaris Studio 12.2 or newer: */
		#include <mbarrier.h>
		void memory_barrier (void) { __machine_rw_barrier (); }
		int atomic_add (volatile unsigned *i) { return atomic_add_int_nv (i, 1); }
		void *atomic_ptr_cmpxchg (volatile void **target, void *cmp, void *newval) { return atomic_cas_ptr (target, cmp, newval); }
		], [], hb_cv_have_solaris_atomic_ops=true
	)
])
if $hb_cv_have_solaris_atomic_ops; then
	AC_DEFINE(HAVE_SOLARIS_ATOMIC_OPS, 1, [Have Solaris __machine_*_barrier and atomic_* operations])
fi

if test "$os_win32" = no && ! $have_pthread; then
	AC_CHECK_HEADERS(sched.h)
	AC_SEARCH_LIBS(sched_yield,rt,AC_DEFINE(HAVE_SCHED_YIELD, 1, [Have sched_yield]))
fi

dnl ===========================================================================

B
Behdad Esfahbod 已提交
506 507 508
AC_CONFIG_FILES([
Makefile
src/Makefile
509
src/harfbuzz-config.cmake
B
Behdad Esfahbod 已提交
510
src/hb-ucdn/Makefile
B
Behdad Esfahbod 已提交
511
util/Makefile
B
Behdad Esfahbod 已提交
512
test/Makefile
B
Behdad Esfahbod 已提交
513
test/api/Makefile
B
Behdad Esfahbod 已提交
514
test/fuzzing/Makefile
515
test/shaping/Makefile
516 517 518
test/shaping/data/Makefile
test/shaping/data/in-house/Makefile
test/shaping/data/text-rendering-tests/Makefile
519 520
test/subset/Makefile
test/subset/data/Makefile
A
Anthony Carrico 已提交
521
docs/Makefile
522
docs/version.xml
B
Behdad Esfahbod 已提交
523 524 525
])

AC_OUTPUT
526 527 528 529 530 531

AC_MSG_NOTICE([

Build configuration:

Unicode callbacks (you want at least one):
532
	Builtin (UCDN):		${have_ucdn}
533 534 535
	Glib:			${have_glib}
	ICU:			${have_icu}

B
Behdad Esfahbod 已提交
536
Font callbacks (the more the merrier):
537 538 539 540
	FreeType:		${have_freetype}

Tools used for command-line utilities:
	Cairo:			${have_cairo}
B
Behdad Esfahbod 已提交
541
	Fontconfig:		${have_fontconfig}
542

B
Behdad Esfahbod 已提交
543
Additional shapers (the more the merrier):
544
	Graphite2:		${have_graphite2}
545

546
Platform shapers (not normally needed):
547
	CoreText:		${have_coretext}
548
	DirectWrite:		${have_directwrite}
E
Ebrahim Byagowi 已提交
549
	Uniscribe:		${have_uniscribe}
A
Anthony Carrico 已提交
550

551
Other features:
552
	Documentation:		${enable_gtk_doc}
B
Behdad Esfahbod 已提交
553
	GObject bindings:	${have_gobject}
554
	Introspection:		${have_introspection}
555
])