-
Notifications
You must be signed in to change notification settings - Fork 40
/
configure.ac
216 lines (175 loc) · 6.76 KB
/
configure.ac
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
dnl Copyright (c) 2006
dnl The Xfce development team. All rights reserved.
dnl
dnl Written for Xfce by Benedikt Meurer <benny@xfce.org>,
dnl changed and updated by Ingo Brückl.
dnl ***************
dnl *** Version ***
dnl ***************
m4_define([xarchiver_version], [0.5.4.23])
dnl ***************************
dnl *** Initialize autoconf ***
dnl ***************************
AC_COPYRIGHT([Copyright (c) 2006
The Xfce development team. All rights reserved.
Written for Xfce by Giuseppe Torelli <colossus73@gmail.com>.
Continuation of the Xfce master branch.])
AC_PREREQ([2.65])
AC_INIT([xarchiver], [xarchiver_version], [https://github.com/ib/xarchiver/issues])
: ${CFLAGS="-O2"}
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_HOST
dnl ***************************
dnl *** Initialize automake ***
dnl ***************************
AM_INIT_AUTOMAKE([1.13 dist-xz])
AM_PROG_CC_C_O
AM_SILENT_RULES([yes])
AM_MAINTAINER_MODE
dnl *******************************
dnl *** Check for UNIX variants ***
dnl *******************************
AC_USE_SYSTEM_EXTENSIONS([_GNU_SOURCE])
dnl ********************************
dnl *** Check for basic programs ***
dnl ********************************
AC_PROG_INSTALL
AC_MSG_CHECKING([for GNU make])
for m in make gmake; do
$m --version -f /dev/null 2> /dev/null | grep -q "GNU Make"
if test $? -eq 0; then
MAKE_PROG=$m
break
fi
done
if test -n "$MAKE_PROG"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
AC_MSG_ERROR([GNU make is required])
fi
dnl **************************
dnl *** Initialize libtool ***
dnl **************************
LT_PREREQ([2.2.0])
LT_INIT([disable-static])
dnl ***********************************************
dnl *** Work-around system-specific limitations ***
dnl ***********************************************
AC_SYS_LARGEFILE
dnl ************************************
dnl *** Check for standard functions ***
dnl ************************************
AC_CHECK_FUNCS([strcasestr mkdtemp socket getc_unlocked mmap])
dnl ********************
dnl *** i18n support ***
dnl ********************
IT_PROG_INTLTOOL([0.40.0], [no-xml])
xgversion="`xgettext --version | head -1 | grep -Eo '[[0-9.]]+$'`"
AS_IF([test x"$xgversion" \< x"0.16"], AC_MSG_ERROR([GNU gettext tools must be at least version 0.16]))
GETTEXT_PACKAGE=m4_default([], [AC_PACKAGE_NAME])
AC_SUBST([GETTEXT_PACKAGE])
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [Name of default gettext domain])
AM_GLIB_GNU_GETTEXT
dnl ***********************************
dnl *** Check for required packages ***
dnl ***********************************
m4_ifndef([PKG_PROG_PKG_CONFIG], [m4_fatal([pkg-config must be at least version 0.18.1])])
PKG_PROG_PKG_CONFIG([0.18.1])
AC_ARG_ENABLE([gtk2], AS_HELP_STRING([--enable-gtk2], [compile xarchiver against GTK+ 2]))
GTK_API_VERSION=2.0
AS_IF([test x"$enable_gtk2" != x"yes"], [PKG_CHECK_EXISTS([gtk+-3.0], [GTK_API_VERSION=3.0], [test x"$enable_gtk2" = x"no" && GTK_API_VERSION=3.0])])
PKG_CHECK_MODULES([GTK], [gtk+-$GTK_API_VERSION >= 2.10.0])
GTK_VERSION_FOUND=`$PKG_CONFIG --modversion gtk+-$GTK_API_VERSION`
AS_VERSION_COMPARE([$GTK_VERSION_FOUND], [2.16.0], [], [GTK_V2_16=yes], [GTK_V2_16=yes])
AM_CONDITIONAL([GTK_V2_16], [test x"$GTK_V2_16" = x"yes"])
AS_VERSION_COMPARE([$GTK_VERSION_FOUND], [3.0.0], [], [GTK_V3_0=yes], [GTK_V3_0=yes])
AM_CONDITIONAL([GTK_V3_0], [test x"$GTK_V3_0" = x"yes"])
dnl ***********************************
dnl *** Check for debugging support ***
dnl ***********************************
AC_ARG_ENABLE(
[debug],
AS_HELP_STRING([--enable-debug[=yes|no|full]], [build with debugging support])
AS_HELP_STRING([--disable-debug], [no debugging support [default]]),
[],
[enable_debug=no]
)
AC_MSG_CHECKING([whether to build with debugging support])
if test x"$enable_debug" != x"no"; then
AC_DEFINE([DEBUG], [1], [Define for debugging support.])
if test x"$enable_debug" = x"full"; then
AC_DEFINE([DEBUG_TRACE], [1], [Define for tracing support.])
test x"$GCC" = x"yes" && xa_cv_additional_CFLAGS="-Werror -g3 -O0"
AC_MSG_RESULT([full])
else
test x"$GCC" = x"yes" && xa_cv_additional_CFLAGS="-g -Og"
AC_MSG_RESULT([yes])
fi
CFLAGS="$CFLAGS $xa_cv_additional_CFLAGS"
else
AC_MSG_RESULT([no])
fi
dnl ***************
dnl *** Options ***
dnl ***************
AC_ARG_ENABLE([doc], AS_HELP_STRING([--disable-doc], [don't install xarchiver's documentation]))
DOC=doc
AS_IF([test x"$enable_doc" = x"no"], [DOC=],
[
AC_PATH_PROG([XSLTPROC], [xsltproc])
AS_IF([test -z "$XSLTPROC"], AC_MSG_ERROR([xsltproc is required for rebuilding the pre-built documentation; consider --disable-doc]))
AC_PATH_PROG([XMLCATALOG], [xmlcatalog])
AS_IF([test -z "$XML_CATALOG_FILES"], [XML_CATALOG_FILES="/etc/xml/catalog"])
xa_cat_msg="consider adjusting environment variable XML_CATALOG_FILES for rebuilding the pre-built documentation or reconfigure with --disable-doc"
AC_MSG_CHECKING([for DocBook XML DTD])
xa_cat_ent="`grep -o '\-//OASIS//DTD DocBook XML[[^"\]]*' doc/xarchiver.docbook`"
AS_IF([test "$XMLCATALOG"], [$XMLCATALOG --noout "$XML_CATALOG_FILES" "$xa_cat_ent" >&2], AC_MSG_RESULT([(skipped)]))
AS_IF([test $? -ne 0], AC_MSG_NOTICE([$xa_cat_msg]))
AC_MSG_CHECKING([for XSL Stylesheets])
xa_cat_ent="`grep -o 'http://docbook[[^"\]]*' doc/xarchiver.xsl`"
AS_IF([test "$XMLCATALOG"], [$XMLCATALOG --noout "$XML_CATALOG_FILES" "$xa_cat_ent" >&2], AC_MSG_RESULT([(skipped)]))
AS_IF([test $? -ne 0], AC_MSG_NOTICE([$xa_cat_msg]))
]
)
AC_SUBST([DOC])
AC_ARG_ENABLE([icons], AS_HELP_STRING([--disable-icons], [don't install xarchiver's icons]))
ICONS=icons
AS_IF([test x"$enable_icons" = x"no"], [ICONS=])
AC_SUBST([ICONS])
AC_ARG_ENABLE([plugin], AS_HELP_STRING([--disable-plugin], [don't install xarchiver's Thunar plugin]))
PLUGINDIR='$(libexecdir)/thunar-archive-plugin/'
PLUGINSCRIPT=xarchiver.tap
AS_IF([test x"$enable_plugin" = x"no"], [PLUGINDIR=; PLUGINSCRIPT=])
AC_SUBST([PLUGINDIR])
AC_SUBST([PLUGINSCRIPT])
AC_ARG_WITH([pixmapdir], AS_HELP_STRING([--with-pixmapdir=DIR], [use directory DIR for xarchiver's internal pixmaps [DATADIR/pixmaps/xarchiver]]))
PIXMAPDIR='$(datadir)/pixmaps/xarchiver'
AS_IF([test x"$with_pixmapdir" != x""], [PIXMAPDIR="$with_pixmapdir"])
AC_SUBST([PIXMAPDIR])
dnl **************
dnl *** Output ***
dnl **************
AC_CONFIG_FILES([
doc/Makefile
icons/16x16/Makefile
icons/24x24/Makefile
icons/32x32/Makefile
icons/48x48/Makefile
icons/scalable/Makefile
icons/Makefile
pixmaps/Makefile
po/Makefile.in
src/Makefile
src/xdgmime/Makefile
Makefile
])
AC_OUTPUT
echo "
${PACKAGE} ${PACKAGE_VERSION} configured for ${prefix} using GTK+ $GTK_VERSION_FOUND
"
if test x"$MAKE_PROG" = x"gmake"; then
echo "Run '$MAKE_PROG' to compile."
fi