-
Notifications
You must be signed in to change notification settings - Fork 13
/
configure.ac
419 lines (357 loc) · 11.7 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
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
# Process this file with autoconf to produce a configure script.
AC_INIT([nip2], [8.9.2], [[email protected]])
# foreign stops complaints about a missing README (we use README.md instead)
# and missing INSTALL (the standard Gnu INSTALL is not very useful)
AM_INIT_AUTOMAKE([-Wno-portability foreign])
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_MACRO_DIR([m4])
dnl
dnl We do the version number components as m4 macros
dnl so that we can base configure --help output off
dnl of them.
dnl
m4_define([nip_major_version], [8])
m4_define([nip_minor_version], [9])
m4_define([nip_micro_version], [2])
m4_define([nip_version],
[nip_major_version.nip_minor_version.nip_micro_version])
MAJOR_VERSION=nip_major_version()
MINOR_VERSION=nip_minor_version()
MICRO_VERSION=nip_micro_version()
AC_DEFINE_UNQUOTED(MAJOR_VERSION, $MAJOR_VERSION, [Major version number])
AC_DEFINE_UNQUOTED(MINOR_VERSION, $MINOR_VERSION, [Minor version number])
AC_DEFINE_UNQUOTED(MICRO_VERSION, $MICRO_VERSION, [Micro version number])
AC_CANONICAL_HOST
AC_MSG_CHECKING([for native Win32])
case "$host" in
*-*-mingw*)
nip_os_win32=yes
;;
*)
nip_os_win32=no
;;
esac
AC_MSG_RESULT([$nip_os_win32])
if test x"$nip_os_win32" = "xyes"; then
AC_DEFINE(OS_WIN32,1,[native win32])
# makes gcc use win native alignment
IP_CFLAGS="-mms-bitfields $IP_CFLAGS"
fi
# src/Makeile.am uses this to add an icon to the .exe
AM_CONDITIONAL(OS_WIN32, test x"$nip_os_win32" = "xyes")
AC_MSG_CHECKING([for Mac OS X])
case "$host" in
*-*-darwin*)
nip_os_darwin=yes
;;
*)
nip_os_darwin=no
;;
esac
AC_MSG_RESULT([$nip_os_darwin])
if test x"$nip_os_darwin" = "xyes"; then
AC_DEFINE(OS_DARWIN,1,[native Mac OS X])
fi
AC_ARG_ENABLE(debug,
AC_HELP_STRING([--enable-debug=@<:@no/minimum/yes@:>@],
[turn on debugging @<:@default=debug_default()@:>@]),,
enable_debug=no)
if test "x$enable_debug" = "xyes"; then
NIP_DEBUG_FLAGS="-DDEBUG_FATAL -DDEBUG_LEAK"
else
NIP_DEBUG_FLAGS="-DG_DISABLE_CAST_CHECKS"
if test "x$enable_debug" = "xno"; then
NIP_DEBUG_FLAGS="$GLIB_DEBUG_FLAGS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
fi
fi
IP_CFLAGS="$NIP_DEBUG_FLAGS $IP_CFLAGS"
# we want largefile support, if possible
AC_SYS_LARGEFILE
# Checks for programs.
AC_PROG_AWK
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_LEX
# we must have flex or lex
if test x"$LEX" = x:; then
AC_MSG_ERROR([lex/flex not found: $PACKAGE requires one of these])
fi
IP_LIBS="$IP_LIBS $LEXLIB"
AC_PROG_INSTALL
AC_PROG_LN_S
AC_CHECK_TOOL(WINDRES, windres)
AC_CHECK_TOOL(DLLWRAP, dllwrap)
AC_CHECK_TOOL(DLLTOOL, dlltool)
AC_CHECK_TOOL(OBJDUMP, objdump)
AC_CHECK_TOOL(RANLIB, ranlib)
AC_CHECK_TOOL(STRIP, strip)
AC_CHECK_TOOL(BISON, bison)
# we have to have bison :-( maybe we could ship the generated .c/.h files? not
# clear on their portability
if test x"$BISON" = x; then
AC_MSG_ERROR([bison not found: $PACKAGE uses bison-only features])
fi
AC_CHECK_TOOL(AR, ar)
AC_CHECK_TOOL(AS, as)
AC_CHECK_TOOL(LD, ld)
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
# dmalloc option
AM_WITH_DMALLOC
# i18n
GETTEXT_PACKAGE=nip2
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
[The prefix for our gettext translation domains.])
# ALL_LINGUAS="en_GB malkovich"
ALL_LINGUAS="en_GB"
AM_GLIB_GNU_GETTEXT
# check for flex ... nip needs to adjust itself a bit
if test "${LEX}" = "flex"; then
AC_DEFINE(HAVE_FLEX,1,[using flex, rather than lex])
fi
# flex >= 2.5.36 uses a nonstandard type for yyleng
AC_MSG_CHECKING([whether yyleng is yy_size_t])
cat > conftest.l <<EOF
%%
%%
yy_size_t yyleng;
EOF
$LEX conftest.l
AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED [`cat $LEX_OUTPUT_ROOT.c`]], [
AC_MSG_RESULT(yes)
AC_DEFINE(YYLENG_IS_YY_SIZE_T,1,
[Define to 1 if lex declares yyleng to be yy_size_t.])
], [
AC_MSG_RESULT(no)
])
rm -f conftest.l $LEX_OUTPUT_ROOT.c
# get packages we need
# gtk before 2.4.9 crashes with the way we use combobox :-(
# vips before 7.30 used "vips-x.y" as the pkg name
PKG_CHECK_MODULES(REQUIRED_PACKAGES,
gmodule-2.0 gthread-2.0 gtk+-2.0 >= 2.4.9 libxml-2.0 vips >= 7.30)
IP_CFLAGS="$REQUIRED_PACKAGES_CFLAGS $IP_CFLAGS"
IP_LIBS="$REQUIRED_PACKAGES_LIBS $IP_LIBS"
# gdk_window_set_opacity() was added in gtk 2.12
PKG_CHECK_EXISTS(gtk+-2.0 >= 2.12,
[nip_set_opacity=yes],
[nip_set_opacity=no]
)
if test x"$nip_set_opacity" = x"yes"; then
AC_DEFINE(HAVE_SET_OPACITY,1,[define if you have gdk_window_set_opacity()])
fi
# GtkInfoBar was added in gtk 2.18
PKG_CHECK_EXISTS(gtk+-2.0 >= 2.18,
[nip_use_infobar=yes],
[nip_use_infobar=no]
)
if test x"$nip_use_infobar" = x"yes"; then
AC_DEFINE(USE_INFOBAR,1,[define if you have GtkInfoBar])
fi
# notebook action widgets came in 2.20
PKG_CHECK_EXISTS(gtk+-2.0 >= 2.20,
[nip_use_notebook_action=yes],
[nip_use_notebook_action=no]
)
if test x"$nip_use_notebook_action" = x"yes"; then
AC_DEFINE(USE_NOTEBOOK_ACTION,1,[define if you have gtk_notebook_set_action_widget()])
fi
# notebook group names widgets came in 2.24
PKG_CHECK_EXISTS(gtk+-2.0 >= 2.24,
[nip_use_notebook_group_name=yes],
[nip_use_notebook_group_name=no]
)
if test x"$nip_use_notebook_group_name" = x"yes"; then
AC_DEFINE(USE_NOTEBOOK_GROUP_NAME,1,[define if you have gtk_notebook_set_group_name()])
fi
# GRegex was added in glib-2.14
# we need it for regex searching in the program window
PKG_CHECK_EXISTS(glib-2.0 >= 2.14,
[nip_use_gregex=yes],
[nip_use_gregex=no]
)
if test x"$nip_use_gregex" = x"yes"; then
AC_DEFINE(HAVE_GREGEX,1,[define if you have GRegex])
fi
# Check for the function strccpy in libgen
AC_CHECK_HEADER(libgen.h,
AC_CHECK_LIB(gen, strccpy,
AC_DEFINE(HAVE_STRCCPY,1,[have strccpy() in -lgen])
IP_LIBS="$IP_LIBS -lgen"
),
)
# Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(limits.h pwd.h fnmatch.h sys/statvfs.h sys/vfs.h sys/mount.h sys/resource.h sys/wait.h malloc.h sys/time.h sys/param.h unistd.h)
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_STRUCT_TM
# Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_FNMATCH
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(geteuid getcwd getpwnam getrlimit getpwent getwd putenv regcomp strcspn strspn strstr)
# need fftw so we load and unload wisdom on startup/shutdown
AC_ARG_WITH([fftw3], AS_HELP_STRING([--without-fftw3], [build without fftw3 (default: test)]))
if test "x$with_fftw3" != "xno"; then
PKG_CHECK_MODULES(FFTW3, fftw3,
[AC_DEFINE(HAVE_FFTW3,1,[define if you have fftw3 installed.])
with_fftw3=yes
],
[AC_MSG_WARN([fftw3 not found; disabling fftw support])
with_fftw3=no
])
IP_CFLAGS="$FFTW3_INCLUDES $FFTW3_CFLAGS $IP_CFLAGS"
IP_LIBS="$FFTW3_LIBS $IP_LIBS"
fi
# goffice needs libgsf to save plots to files
AC_ARG_WITH([libgsf], AS_HELP_STRING([--without-libgsf], [build without libgsf (default: test)]))
if test "x$with_libgsf" != "xno"; then
PKG_CHECK_MODULES(LIBGSF, libgsf-1,
[AC_DEFINE(HAVE_LIBGSF,1,[define if you have libgsf installed.])
with_libgsf=yes
],
[AC_MSG_WARN([libgsf not found; disabling save plot to file])
with_libgsf=no
])
IP_CFLAGS="$LIBGSF_CFLAGS $LIBGSF_INCLUDES $IP_CFLAGS"
IP_LIBS="$LIBGSF_LIBS $IP_LIBS"
fi
# optional ... use libgoffice to draw plots
# pretty basic functionality, really, but we need to be able to build without
# it for testing
AC_ARG_WITH([libgoffice], AS_HELP_STRING([--without-libgoffice], [build without libgoffice (default: test)]))
if test "x$with_libgoffice" != "xno"; then
PKG_CHECK_MODULES(LIBGOFFICE, libgoffice-0.8,
[AC_DEFINE(HAVE_LIBGOFFICE,1,[define if you have libgoffice installed.])
with_libgoffice=yes
],
[AC_MSG_WARN([libgoffice not found; disabling plot display])
with_libgoffice=no
])
IP_CFLAGS="$LIBGOFFICE_CFLAGS $LIBGOFFICE_INCLUDES $IP_CFLAGS"
IP_LIBS="$LIBGOFFICE_LIBS $IP_LIBS"
fi
# optional ... use libgvc to draw graphs of workspace dependencies
AC_ARG_WITH([libgvc], AS_HELP_STRING([--without-libgvc], [build without libgvc (default: test)]))
# gvc 2.30 is broken in a number of ways and we can't use it, see for example
# http://lists.research.att.com/pipermail/graphviz-devel/2012/001544.html
if test "x$with_libgvc" != "xno"; then
PKG_CHECK_MODULES(LIBGVC, libgvc > 2.30,
[AC_DEFINE(HAVE_LIBGVC,1,[define if you have libgvc installed.])
with_libgvc=yes
],
[AC_MSG_WARN([libgvc not found; disabling workspace dep graph display])
with_libgvc=no
])
IP_CFLAGS="$LIBGVC_CFLAGS $LIBGVC_INCLUDES $IP_CFLAGS"
IP_LIBS="$LIBGVC_LIBS $IP_LIBS"
fi
# optional ... we add some gsl funcs as builtins if available
AC_ARG_WITH([gsl], AS_HELP_STRING([--without-gsl], [build without gsl (default: test)]))
if test "x$with_gsl" != "xno"; then
PKG_CHECK_MODULES(GSL, gsl,
[AC_DEFINE(HAVE_GSL,1,[define if you have gsl installed.])
with_gsl=yes
],
[AC_MSG_WARN([gsl not found; disabling extra numerical functions])
with_gsl=no
])
IP_CFLAGS="$GSL_CFLAGS $GSL_INCLUDES $IP_CFLAGS"
IP_LIBS="$GSL_LIBS $IP_LIBS"
fi
# optional ... use this to open the help browser, if available
AC_PATH_PROG(XDG_OPEN, xdg-open, no)
if test "x$XDG_OPEN" != "xno"; then
AC_DEFINE(HAVE_XDG_OPEN,1,[define if you have xdg-open])
AC_DEFINE_UNQUOTED(XDG_OPEN, "$XDG_OPEN", [path of xdg-open binary])
fi
# optional ... use these to update desktop after install
AC_PATH_PROG(UPDATE_MIME_DATABASE, update-mime-database, no)
AC_PATH_PROG(UPDATE_DESKTOP_DATABASE, update-desktop-database, no)
nip_desktop_update=no
if test "x$UPDATE_MIME_DATABASE" != "xno"; then
if test "x$UPDATE_DESKTOP_DATABASE" != "xno"; then
nip_desktop_update=yes
fi
fi
# stop the DBs being updated: useful for packagers
AC_ARG_ENABLE(update-desktop,
AC_HELP_STRING([--disable-update-desktop],
[disable update of desktop database]),
[nip_desktop_update=$enableval],)
if test x"$nip_desktop_update" = "xyes"; then
AM_CONDITIONAL(UPDATE_DESKTOP, true)
else
AM_CONDITIONAL(UPDATE_DESKTOP, false)
fi
# we always need -lm
IP_LIBS="$IP_LIBS -lm"
AC_SUBST(IP_CFLAGS)
AC_SUBST(IP_LIBS)
# needed by test/test_all.sh
# :( what's a better way to do this, argh
TOP_SRCDIR=$ac_pwd
AC_SUBST(TOP_SRCDIR)
AC_OUTPUT([
nip2.desktop
Makefile
man/Makefile
man/man1/Makefile
share/Makefile
share/nip2/Makefile
share/nip2/data/Makefile
share/nip2/rc/Makefile
share/nip2/start/Makefile
share/nip2/compat/Makefile
share/nip2/compat/7.8/Makefile
share/nip2/compat/7.9/Makefile
share/nip2/compat/7.10/Makefile
share/nip2/compat/7.12/Makefile
share/nip2/compat/7.14/Makefile
share/nip2/compat/7.16/Makefile
share/nip2/compat/7.24/Makefile
share/nip2/compat/7.26/Makefile
share/nip2/compat/7.28/Makefile
share/nip2/compat/7.38/Makefile
share/nip2/compat/7.40/Makefile
share/nip2/compat/8.2/Makefile
share/nip2/compat/8.3/Makefile
share/nip2/compat/8.4/Makefile
share/nip2/compat/8.5/Makefile
share/nip2/compat/8.6/Makefile
src/BITMAPS/Makefile
src/Makefile
test/Makefile
test/test_all.sh
po/Makefile.in
nip2.spec
])
# generated script needs to be executable
chmod +x test/test_all.sh
AC_MSG_RESULT([
* general build options
native win32: $nip_os_win32
native os x: $nip_os_darwin
update desktop after install: $nip_desktop_update
debug: $enable_debug
* optional packages and modules
use fftw3 for FFT: $with_fftw3
use gsl for numeric functions: $with_gsl
use libgoffice to show plots: $with_libgoffice
use libgsf to save plots to files: $with_libgsf
use libgvc to show ws dep graphs: $with_libgvc
(requires gvc > 2.30)
use gtkinfobar to show messages: $nip_use_infobar
(requires gtk+-2.0 >= 2.18)
use notebook action widget: $nip_use_notebook_action
(requires gtk+-2.0 >= 2.20)
use notebook group name: $nip_use_notebook_group_name
(requires gtk+-2.0 >= 2.24)
allow regex searches: $nip_use_gregex
(requires glib-2.0 >= 2.14)
display help files with xdg: $XDG_OPEN
])