1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
AC_PREREQ(2.54)
AC_INIT(silgraphite, 2.2.1, silgraphite-devel@lists.sourceforge.net)
AC_CONFIG_SRCDIR(src/segment/GrEngine.cpp)
AC_CONFIG_AUX_DIR(config)
# setup automake
AM_INIT_AUTOMAKE(foreign)
AM_MAINTAINER_MODE
# System checks.
AC_CANONICAL_HOST
AC_C_BIGENDIAN
# Optional features
AC_ARG_ENABLE(tracing,
AC_HELP_STRING([--enable-tracing],
[build with support for trace Graphite logs (default=no)]))
AC_ARG_ENABLE(debug,
AC_HELP_STRING([--enable-debug],
[build with debugging. (default=no)]))
AC_ARG_ENABLE(final,
AC_HELP_STRING([--enable-final],
[build with optimizations and no debugging. (default=no)]))
AC_ARG_ENABLE(profile,
AC_HELP_STRING([--enable-profile],
[allow profiling (default=no)]))
AC_ARG_ENABLE(profilefn,
AC_HELP_STRING([--enable-profilefn],
[allow functioncheck profiling (default=no)]))
# Checks for programs.
AC_LANG_CPLUSPLUS
AC_PROG_INSTALL
AC_PROG_LIBTOOL
AC_PATH_PROG(LSB_RELEASE, lsb_release, no)
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDC
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
AC_CHECK_SIZEOF(wchar_t)
AC_SUBST(SIZEOF_WCHAR_T)
# Checks for library functions.
# Setup the build compiler flags and linker flags.
# Enable debug
build_flags=""
if test "$enable_debug" = yes; then
build_flags="$build_flags -O0 -g -Wall -Wno-unknown-pragmas -Wparentheses -Werror"
else
build_flags="$build_flags -DNDEBUG"
fi
# Enable Graphite Trace logs - these are only used if a
# LayoutEnvironment has a valid ostream pointer
if test "$enable_tracing" = yes; then
build_flags="$build_flags -DTRACING"
fi
# Enable final
if test "$enable_final" = yes; then
build_flags="$build_flags -O3 -DNDEBUG"
fi
# Enable profile
if test "$enable_profile" = yes; then
build_flags="$build_flags -pg "
fi
if test "$enable_profilefn" = yes; then
build_flags="$build_flags -g -finstrument-functions "
LIBS="$LIBS -g -finstrument-functions -lfnccheck "
fi
# Find distrib codename
AC_MSG_CHECKING(if already have REL_CODENAME)
if test -z "${REL_CODENAME}"; then
AC_MSG_RESULT(no)
AC_MSG_CHECKING(if have lsb_release)
if test "${LSB_RELEASE}" = "no"; then
AC_MSG_RESULT(no)
REL_CODENAME="unstable"
else
AC_MSG_RESULT(yes)
AC_MSG_CHECKING(if LSB_RELEASE is empty)
if test -z ${LSB_RELEASE}; then
AC_MSG_RESULT(yes)
REL_CODENAME="unstable"
else
AC_MSG_RESULT(no)
CODENAME=`${LSB_RELEASE} -c | sed -e 's/^\S*\s*//'`
AC_MSG_CHECKING(if release is sid)
if test ${CODENAME} = 'sid'; then
AC_MSG_RESULT(yes)
REL_CODENAME="unstable"
else
AC_MSG_RESULT(no, ${CODENAME})
REL_CODENAME=${CODENAME}
fi
fi
fi
else
AC_MSG_RESULT(yes)
fi
AC_SUBST(REL_CODENAME)
CFLAGS="$CFLAGS $build_flags"
CXXFLAGS="$CXXFLAGS $build_flags"
AC_CONFIG_FILES(Makefile \
silgraphite.pc:installed-top.pc.in:silgraphite.pc.in \
silgraphite-uninstalled.pc:uninstalled-top.pc.in:silgraphite.pc.in \
src/Makefile \
test/Makefile \
test/RegressionTest/Makefile \
test/ProfileHarness/Makefile)
AC_OUTPUT
|