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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
AC_PREREQ([2.63])
AC_INIT([Yelp],[3.3.4],[http://bugzilla.gnome.org/enter_bug.cgi?product=yelp],[yelp])
AC_CONFIG_SRCDIR([src/yelp.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.11 dist-bzip2 no-dist-gzip])
AM_MAINTAINER_MODE([enable])
AM_SILENT_RULES([yes])
# Check for programs
AC_PROG_CC
AC_PROG_CC_C_O
AC_PROG_LN_S
# Initialize libtool
LT_PREREQ([2.2.6])
LT_INIT
AC_PATH_PROGS(SED, gsed sed)
AM_PATH_GLIB_2_0
GLIB_GSETTINGS
# Library dependecies
PKG_CHECK_MODULES(YELP,
[
gio-2.0 >= 2.25.11
gio-unix-2.0
gtk+-unix-print-3.0
gtk+-3.0 >= 2.91.8
libxml-2.0 >= 2.6.5
libxslt >= 1.1.4
libexslt >= 0.8.1
sqlite3
webkitgtk-3.0 >= 1.3.2
yelp-xsl >= 3.1.2
])
AC_SUBST([YELP_CFLAGS])
AC_SUBST([YELP_LIBS])
GNOME_DEBUG_CHECK
GNOME_COMPILE_WARNINGS([maximum])
GNOME_MAINTAINER_MODE_DEFINES
MORE_WARN_FLAGS=
if test "x$enable_debug" = "xyes"; then
AC_DEFINE([YELP_DEBUG],[1],[Enable Yelp debugging])
AM_CFLAGS="$AM_CFLAGS -pedantic -ansi"
fi
dnl NOTE : it appears that some systems do not like it when you use line
dnl continuation charactes to split CFLAGS into readable chunks
if test "x$GCC" = "xyes"; then
AM_CFLAGS="$AM_CFLAGS -Wall -Wno-uninitialized -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare"
fi
# i18n stuff
IT_PROG_INTLTOOL([0.41.0])
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.17])
GETTEXT_PACKAGE=yelp
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",
[The gettext translation domain])
AC_ARG_VAR([ITSTOOL], [Path to the `itstool` command])
AC_CHECK_PROG([ITSTOOL], [itstool], [itstool])
if test x"$ITSTOOL" = x; then
AC_MSG_ERROR([itstool is required to build the translation XML files])
fi
LIBLZMA_REQUIRED=4.9
AC_ARG_ENABLE(lzma,
AS_HELP_STRING([--enable-lzma],[Enable lzma decoder support [[default=yes]]]),
[enable_lzma=$enableval],
[enable_lzma="auto"])
if test x"$enable_lzma" = "xauto"; then
PKG_CHECK_MODULES(YELP_LZMA,
liblzma >= $LIBLZMA_REQUIRED,
enable_lzma=yes,
enable_lzma=no)
elif test x"$enable_lzma" = "xyes"; then
PKG_CHECK_MODULES(YELP_LZMA, liblzma >= $LIBLZMA_REQUIRED)
fi
if test x"$enable_lzma" = "xyes"; then
YELP_CFLAGS="$YELP_LZMA_CFLAGS $YELP_CFLAGS";
YELP_LIBS="$YELP_LZMA_LIBS $YELP_LIBS";
AC_DEFINE(ENABLE_LZMA, 1, [Enable lzma decoder support])
fi
AM_CONDITIONAL([ENABLE_LZMA],[test x"$enable_lzma" != "xno"])
AC_ARG_ENABLE(bz2,
AS_HELP_STRING([--enable-bz2],[Enable bz2 decoder support [[default=yes]]]),
[enable_bz2=$enableval],
[enable_bz2="auto"])
if test x"$enable_bz2" = "xauto"; then
AC_CHECK_LIB(bz2,
BZ2_bzread,
enable_bz2=yes,
enable_bz2=no)
elif test x"$enable_bz2" = "xyes"; then
AC_CHECK_LIB(bz2, BZ2_bzread)
fi
if test x"$enable_bz2" = "xyes"; then
YELP_LIBS="-lbz2 $YELP_LIBS";
AC_DEFINE(ENABLE_BZ2, 1, [Enable bz2 decoder support])
fi
AM_CONDITIONAL([ENABLE_BZ2],[test x"$enable_bz2" != "xno"])
AC_SUBST([YELP_CFLAGS])
AC_SUBST([YELP_LIBS])
DATADIR=`(
case $prefix in
NONE) prefix=$ac_default_prefix ;;
*) ;;
esac
eval echo $(eval echo $datadir)/yelp
)`
AC_SUBST([DATADIR])
XSL_PATH="`$PKG_CONFIG --variable=xsltdir yelp-xsl`"
XSL_DB2XHTML="`$PKG_CONFIG --variable=db2xhtml yelp-xsl`"
AC_SUBST(XSL_DB2XHTML)
XSL_MAL2XHTML="`$PKG_CONFIG --variable=mal2xhtml yelp-xsl`"
AC_SUBST(XSL_MAL2XHTML)
XSL_COLOR="`$PKG_CONFIG --variable=xsltdir yelp-xsl`/common/color.xsl"
AC_SUBST(XSL_COLOR)
XSL_ICONS="`$PKG_CONFIG --variable=xsltdir yelp-xsl`/common/icons.xsl"
AC_SUBST(XSL_ICONS)
XSL_HTML="`$PKG_CONFIG --variable=xsltdir yelp-xsl`/common/html.xsl"
AC_SUBST(XSL_HTML)
XSL_JSDIR="`$PKG_CONFIG --variable=jsdir yelp-xsl`"
AC_SUBST(XSL_JSDIR)
XSL_GETTEXT="`$PKG_CONFIG --variable=gettext yelp-xsl`"
AC_SUBST(XSL_GETTEXT)
YELP_ICON_PATH="`$PKG_CONFIG --variable=icondir yelp-xsl`"
AC_SUBST(YELP_ICON_PATH)
GLIB_GENMARSHAL="`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`"
AC_SUBST(GLIB_GENMARSHAL)
#
# If Pango included the shared library dependencies from X11 in
# the pkg-config output, then we use that (to avoid duplicates).
# but if they were omitted to avoid binary compatibility problems
# then we need to repeat the checks.
#
if $PKG_CONFIG --exists pangoxft ; then
PANGO_PACKAGES="pangox pangoxft"
else
PANGO_PACKAGES="pangox"
fi
x_libs="`$PKG_CONFIG --libs $PANGO_PACKAGES`"
case x_libs in
*-lX11*) pango_omitted_x_deps=no ;;
*) pango_omitted_x_deps=yes ;;
esac
if test $pango_omitted_x_deps = yes ; then
AC_PATH_XTRA
if test x$no_x = xyes ; then
AC_MSG_ERROR([X development libraries not found])
else
X_LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS"
fi
fi
AC_SUBST(X_LIBS)
# Set flags
AM_CPPFLAGS="$AM_CPPFLAGS $DEPRECATION_FLAGS"
AM_CFLAGS="$AM_CFLAGS $WARN_CFLAGS $MORE_WARN_FLAGS"
AC_SUBST([AM_CPPFLAGS])
AC_SUBST([AM_CFLAGS])
AC_SUBST([AM_LDFLAGS])
GTK_DOC_CHECK([1.13],[--flavour no-tmpl])
AC_CONFIG_FILES([
Makefile
docs/Makefile
docs/libyelp/Makefile
docs/libyelp/version.xml
libyelp/Makefile
src/Makefile
data/Makefile
data/domains/Makefile
data/dtd/Makefile
data/dtd/catalog
data/icons/Makefile
data/icons/hicolor/Makefile
data/icons/hicolor/16x16/Makefile
data/icons/hicolor/16x16/status/Makefile
data/icons/hicolor/scalable/Makefile
data/icons/hicolor/scalable/actions/Makefile
data/icons/hicolor/scalable/status/Makefile
data/xslt/Makefile
data/xslt/db2html.xsl
data/xslt/info2html.xsl
data/xslt/mal2html.xsl
data/xslt/man2html.xsl
data/xslt/yelp-common.xsl
po/Makefile.in
tests/Makefile
yelp.desktop.in
])
AC_OUTPUT
dnl ==========================================================================
echo "
yelp-$VERSION:
prefix: ${prefix}
source code location: ${srcdir}
compiler: ${CC}
Documentation: ${enable_gtk_doc}
Debug enabled: ${enable_debug}
Enable BZ2: ${enable_bz2}
Enable LZMA: ${enable_lzma}
"
|