-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
525 lines (436 loc) · 14.6 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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
dnl configuration script for gerbv
dnl
dnl gEDA - GNU Electronic Design Automation
dnl This file is part of gerbv.
dnl
dnl Copyright (C) 2000-2001 Stefan Petersen (spe@stacken.kth.se)
dnl
dnl $Id$
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 2 of the License, or
dnl (at your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA
AC_INIT([gerbv], [m4_esyscmd(utils/git-version-gen.sh 2.9.7-rc.1)])
AC_CONFIG_SRCDIR([src/gerbv.c])
AC_PREREQ([2.69])
AM_INIT_AUTOMAKE([1.9])
AC_USE_SYSTEM_EXTENSIONS
AC_CONFIG_MACRO_DIR([m4])
dnl Create a configuration header
AC_CONFIG_HEADERS([config.h])
dnl Initialize maintainer mode
AM_MAINTAINER_MODE
dnl Internationalisation
dnl https://www.gnu.org/software/gettext/manual/html_node/AM_005fGNU_005fGETTEXT.html
AM_NLS
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.19])
#AX_DESKTOP_I18N
dnl man-page internationalization
AC_PATH_PROG([po4a_gettextize],[po4a-gettextize])
AC_PATH_PROG([po4a_translate],[po4a-translate])
if test -z "$po4a_gettextize" -o -z "$po4a_translate" ; then
AC_MSG_WARN([po4a was not found. If you want to change and compile \
internationalized documentation, please install po4a])
else
have_po4a=yes
fi
dnl po4a depend on onsgmls (opensp) or nsgmls (sp)
AC_PATH_PROG([onsgmls],[onsgmls])
if test -n "$onsgmls" ; then
have_onsgmls=yes
fi
AC_PATH_PROG([nsgmls],[nsgmls])
if test -n "$nsgmls" ; then
have_nsgmls=yes
fi
if test "x$have_nsgmls" = "x" -a "x$have_onsgmls" = "x"; then
AC_MSG_WARN([no onsgmls nor nsgmls was found. If you want to change \
and compile internationalized documentation, please install opensp or sp])
fi
AM_CONDITIONAL(HAVE_PO4A,
test "x$have_po4a" = "xyes" -a "x$have_onsgmls" = "xyes" -o \
"x$have_po4a" = "xyes" -a "x$have_nsgmls" = "xyes")
############################################################
#
# Checks for cygwin/mingw32
#
AC_CANONICAL_HOST
# if you want -mno-cygwin, then add it to MINGW_CFLAGS or CYGWIN_CFLAGS
# in your configure environment. After all you may or may not
# want to always force -mno-cygwin on all users.
AC_MSG_CHECKING([for windows])
WIN32=${WIN32:-no}
case $host_os in
*cygwin* )
CFLAGS="$CFLAGS ${CYGWIN_CFLAGS}"
CPPFLAGS="$CPPFLAGS ${CYGWIN_CPPFLAGS}"
;;
*mingw32* )
WIN32=yes
CFLAGS="$CFLAGS ${MINGW_CFLAGS:--mms-bitfields -mwindows}"
CPPFLAGS="$CPPFLAGS ${MINGW_CPPFLAGS:--mms-bitfields -mwindows}"
;;
esac
AC_MSG_RESULT([$WIN32])
AC_SUBST(WIN32)
AM_CONDITIONAL(WIN32, test x$WIN32 = xyes)
GERBV_PATH_DELIMETER=":"
GERBV_DIR_SEPARATOR_S="/"
GERBV_DIR_SEPARATOR_C='/'
if test "x$WIN32" = "xyes" ; then
GERBV_PATH_DELIMETER=";"
GERBV_DIR_SEPARATOR_S="\\\\"
GERBV_DIR_SEPARATOR_C='\\'
fi
AC_DEFINE_UNQUOTED(GERBV_DIR_SEPARATOR_C,'$GERBV_DIR_SEPARATOR_C',[Directory separator char])
AC_DEFINE_UNQUOTED(GERBV_DIR_SEPARATOR_S,"$GERBV_DIR_SEPARATOR_S",[Directory separator string])
AC_DEFINE_UNQUOTED(GERBV_PATH_DELIMETER,"$_PATH_DELIMETER",[Search path separator string])
#
#
############################################################
############################################################
#
# Checks for our configure args
#
dnl --enable-debug
debug=0
AC_ARG_ENABLE(debug,
[ --enable-debug Enable fairly verbose debug output],
[
if test $enableval = "yes"; then
debug=1
fi
],
[
debug=0
])
AC_DEFINE_UNQUOTED(DEBUG, $debug, [Define to 1 to enable debugging code])
AC_DEFINE_UNQUOTED(GERBV_DEFAULT_BORDER_COEFF, 0.05, [Default border coefficient for export])
dnl --enable-unit-mm : Set default unit for coordinates in status bar to mm
AC_ARG_ENABLE(unit-mm,
[ --enable-unit-mm Set default unit for coordinates in status bar to mm],
[
if test "$enableval" = "yes"; then
default_unit="mm"
fi
])
if test "$default_unit" = "mm"; then
AC_DEFINE(GERBV_DEFAULT_UNIT, GERBV_MMS, [Default unit to display in statusbar])
else
AC_DEFINE(GERBV_DEFAULT_UNIT, GERBV_MILS, [Default unit to display in statusbar])
fi
#
#
############################################################
############################################################
#
# Preliminary checks
#
dnl Build time sanity check... (?)
AM_SANITY_CHECK
dnl Checks for programs.
AC_PROG_CC
if test "x$enable_dxf " != "xno" ; then
AC_PROG_CXX
fi
AC_PROG_MAKE_SET
AC_PROG_INSTALL
LT_INIT
if test "x$WIN32" = "xyes" ; then
AC_CHECK_TOOL(WINDRES, windres, no)
if test "$WINDRES" = "no"; then
AC_MSG_ERROR([*** Could not find an implementation of windres in your PATH.])
fi
fi
# if we have gcc then add -Wall
if test "x$GCC" = "xyes"; then
if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then
CFLAGS="$CFLAGS -Wall"
fi
fi
# Check for ImageMagick tools used by the testsuite
AC_PATH_PROG(IM_ANIMATE, animate, notfound)
AC_PATH_PROG(IM_COMPARE, compare, notfound)
AC_PATH_PROG(IM_COMPOSITE, composite, notfound)
AC_PATH_PROG(IM_CONVERT, convert, notfound)
AC_PATH_PROG(IM_DISPLAY, display, notfound)
AC_PATH_PROG(IM_MONTAGE, montage, notfound)
missing_magick=""
test "${IM_ANIMATE}" != "notfound" || missing_magick="${missing_magick} animate"
test "${IM_COMPARE}" != "notfound" || missing_magick="${missing_magick} compare"
test "${IM_COMPOSITE}" != "notfound" || missing_magick="${missing_magick} composite"
test "${IM_CONVERT}" != "notfound" || missing_magick="${missing_magick} convert"
test "${IM_DISPLAY}" != "notfound" || missing_magick="${missing_magick} display"
test "${IM_MONTAGE}" != "notfound" || missing_magick="${missing_magick} montage"
AC_MSG_CHECKING([if all ImageMagick tools needed for the testsuite were found])
if test "X${missing_magick}" != "X" ; then
AC_MSG_RESULT([no. The testsuite will be disabled because the following
tools from the ImageMagick suite were not found:
${missing_magick}
No loss in gerbv functionality should be experienced, you just will not
be able to run the regression testsuite.
])
have_magick=no
else
AC_MSG_RESULT([yes])
have_magick=yes
fi
AM_CONDITIONAL(HAVE_MAGICK, test x$have_magick = xyes)
# Check for pkg-config
PKG_PROG_PKG_CONFIG
if test "x$PKG_CONFIG" = "x"; then
AC_MSG_ERROR([Cannot find pkg-config, make sure it is installed and in your PATH])
fi
# Check GSettings support
GLIB_GSETTINGS
#
#
#
############################################################
############################################################
#
# Library checks
#
AC_CHECK_LIB(m, sin)
# used by src/dynload.c (part of tinyscheme)
AC_CHECK_LIB(dl, dlopen)
#
#
############################################################
############################################################
#
# GTK and cairo checks
#
PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.0, , [AC_MSG_ERROR([
*** Cairo > 1.2.0 required but not found. ***
Please review the following errors:
$CAIRO_PKG_ERRORS])]
)
CAIRO_VER=`$PKG_CONFIG cairo --modversion`
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.18.0, , [AC_MSG_ERROR([
*** GTK >= 2.18.0 is required but was not found. Please review
the following errors:
$GTK_PKG_ERRORS])]
)
GTK_VER=`$PKG_CONFIG gtk+-2.0 --modversion`
#
#
############################################################
############################################################
#
# dxflib
with_dxf=no
AC_MSG_CHECKING([if dxf should be enabled])
AC_ARG_ENABLE([dxf],
[ --enable-dxf Enable DXF via dxflib [[default=no]]],
[
if test "X$enable_dxf " != "Xno" ; then
AC_MSG_RESULT([yes])
AC_CHECK_LIB(dxflib,main,,
AC_MSG_ERROR([You have requested DXF support but -ldxflib could not be found]))
with_dxf=yes
AC_MSG_CHECKING([dxflib version])
AC_LANG([C++])
AC_RUN_IFELSE([AC_LANG_PROGRAM([[
#include <string.h>
#include <dxflib/dl_dxf.h>
#ifndef DL_VERSION
# define DL_VERSION "undefined"
#endif
]], [[
if (!strncmp("2.2.", DL_VERSION, 4)
|| !strncmp("2.5.", DL_VERSION, 4)
|| !strncmp("3.12.", DL_VERSION, 5)
|| !strncmp("3.17.", DL_VERSION, 5)
|| !strncmp("3.26.", DL_VERSION, 5))
return 0;
return 1;
]])],
AC_MSG_RESULT([yes]),
AC_MSG_ERROR([untested dxflib version]))
else
AC_MSG_RESULT([no])
fi
],
[
AC_MSG_RESULT([no])
])
AM_CONDITIONAL(DXF, test x$with_dxf = xyes)
#
#
############################################################
############################################################
#
# ElectricFence
with_efence=no
AC_MSG_CHECKING([if ElectricFence debugging should be enabled])
AC_ARG_ENABLE([efence],
[ --enable-efence Link with ElectricFence for malloc debugging [default=no]],
[
if test "X$enable_efence" != "Xno" ; then
AC_MSG_RESULT([yes])
AC_CHECK_LIB(efence,main,,
AC_MSG_ERROR([You have requested ElectricFence debugging but -lefence could not be found]))
with_efence=yes
else
AC_MSG_RESULT([no])
fi
],
[
AC_MSG_RESULT([no])
])
#
#
############################################################
######################################################################
#
# desktop integration
#
AC_PATH_PROG(SETENV, env, [])
AC_PATH_PROG(GTK_UPDATE_ICON_CACHE_BIN, gtk-update-icon-path, [true])
# Change default location for XDG files (MIME and Icons)
AC_ARG_WITH(xdgdatadir, [ --with-xdgdatadir=path Change where the theme icons
and mime registrations are installed [[DATADIR]]], [opt_xdgdatadir=$withval])
if test x$opt_xdgdatadir = x; then
# path was not specified with --with-xdgdatadir
XDGDATADIR='${datadir}'
else
# path WAS specified with --with-xdgdatadir
XDGDATADIR="$opt_xdgdatadir"
fi
AC_SUBST(XDGDATADIR)
AC_ARG_ENABLE(update-desktop-database,
AS_HELP_STRING([--disable-update-desktop-database],[do not update desktop database after installation]),,
enable_update_desktop_database=yes)
AM_CONDITIONAL(ENABLE_UPDATE_DESKTOP_DATABASE, test x$enable_update_desktop_database = xyes)
if test x$enable_update_desktop_database = xyes ; then
AC_PATH_PROG(UPDATE_DESKTOP_DATABASE, [update-desktop-database], no)
if test $UPDATE_DESKTOP_DATABASE = no; then
AC_MSG_ERROR([Cannot find update-desktop-database, make sure it is installed and in your PATH, or configure with --disable-update-desktop-database])
fi
fi
#
######################################################################
AC_CHECK_HEADERS(unistd.h getopt.h string.h sys/mman.h sys/types.h sys/stat.h stdlib.h regex.h libgen.h time.h)
AC_CHECK_FUNCS(getopt_long)
AC_CHECK_FUNCS(strlwr)
# for lrealpath.c
AC_CHECK_FUNCS(realpath canonicalize_file_name)
libiberty_NEED_DECLARATION(canonicalize_file_name)
AC_SUBST([GTK_CFLAGS_ISYSTEM], ['$(subst -I/usr/include/gtk-2.0,-isystem /usr/include/gtk-2.0,$(GTK_CFLAGS))'])
CFLAGS="$CFLAGS $GDK_PIXBUF_CFLAGS $GTK_CFLAGS_ISYSTEM $CAIRO_CFLAGS"
LIBS="$LIBS $GDK_PIXBUF_LIBS $GTK_LIBS $CAIRO_LIBS -lm"
AC_ARG_VAR([CPPFLAGS_EXTRA], [Additional flags when compiling])
CPPFLAGS="$CPPFLAGS $GTK_CFLAGS_ISYSTEM $CPPFLAGS_EXTRA"
############################################################
#
# scheme configure stuff
#
AC_DEFINE([STANDALONE], [0],[Scheme interpreter not used standalone])
AC_DEFINE([USE_DL],[1],[Dynamic linking in Scheme interpreter])
AC_DEFINE([SUN_DL],[1],[DL Sun method])
AC_DEFINE([USE_MATH],[1],[Math in Scheme interpreter])
AC_DEFINE([USE_ASCII_NAMES],[1],[ASCII names in Scheme interpreter])
AC_DEFINE([USE_COLON_HOOKS],[1],[Colon Hooks in Scheme interpreter])
AC_DEFINE([USE_STRING_HOOKS],[1],[String Hooks in Scheme interpreter])
AC_DEFINE([USE_INTERFACE],[1],[Use extension interface of Scheme interpreter])
#
#
############################################################
AX_CODE_COVERAGE
############################################################
#
# Figure out relative paths
#
# standard autoconf variables
CPPFLAGS="$CPPFLAGS -DPREFIXDIR=\\\"\${prefix}\\\""
CPPFLAGS="$CPPFLAGS -DBINDIR=\\\"\${bindir}\\\""
# these relative paths will be used to help locate init.scm
# in the event that the installation directory is relocated.
AC_MSG_CHECKING([for the bindir to datadir relative path])
adl_COMPUTE_RELATIVE_PATHS([bindir:datadir:bindir_to_datadir])
adl_NORMALIZE_PATH([bindir_to_datadir], [$GERBV_DIR_SEPARATOR_S])
AC_MSG_RESULT([$bindir_to_datadir])
AC_DEFINE_UNQUOTED(BINDIR_TO_DATADIR, "$bindir_to_datadir", [Relative path from bindir to datadir])
PKGDATADIR=${datadir}/${PACKAGE}
AC_MSG_CHECKING([for the bindir to pkgdatadir relative path])
adl_COMPUTE_RELATIVE_PATHS([bindir:PKGDATADIR:bindir_to_pkgdatadir])
adl_NORMALIZE_PATH([bindir_to_pkgdatadir], [$GERBV_DIR_SEPARATOR_S])
AC_MSG_RESULT([$bindir_to_pkgdatadir])
AC_DEFINE_UNQUOTED(BINDIR_TO_PKGDATADIR, "$bindir_to_pkgdatadir", [Relative path from bindir to pkgdatadir])
AC_MSG_CHECKING([for the bindir to exec_prefix relative path])
adl_COMPUTE_RELATIVE_PATHS([bindir:exec_prefix:bindir_to_execprefix])
adl_NORMALIZE_PATH([bindir_to_execprefix], [$GERBV_DIR_SEPARATOR_S])
AC_MSG_RESULT([$bindir_to_execprefix])
AC_DEFINE_UNQUOTED(BINDIR_TO_EXECPREFIX, "$bindir_to_execprefix", [Relative path from bindir to exec_prefix])
#
#
############################################################
AC_CONFIG_FILES([Makefile \
src/Makefile \
src/libgerbv.pc \
scheme/Makefile \
\
share/glib-2.0/schemas/Makefile \
desktop/Makefile \
\
doc/PNG-print/Makefile \
doc/eagle/Makefile \
doc/html/Makefile \
doc/example-code/Makefile \
doc/Makefile \
man/Makefile \
\
po/Makefile.in \
\
example/eaglecad1/Makefile \
example/nollezappare/Makefile \
example/numpres/Makefile \
example/jj/Makefile \
example/dan/Makefile \
example/ekf2/Makefile \
example/exposure/Makefile \
example/am-test/Makefile \
example/cslk/Makefile \
example/orcad/Makefile \
example/Mentor-BoardStation/Makefile \
example/pick-and-place/Makefile \
example/polarity/Makefile \
example/thermal/Makefile \
example/trailing/Makefile \
example/Makefile \
\
test/Makefile \
test/golden/Makefile \
test/inputs/Makefile \
\
win32/Makefile \
])
AC_OUTPUT
expandedXDGDATADIR=`eval "echo $XDGDATADIR"`
AC_MSG_RESULT([
** Configuration summary for $PACKAGE $VERSION:
PREFIX: $PREFIX
xdg data directory: $expandedXDGDATADIR
CPPFLAGS: $CPPFLAGS
CFLAGS: $CFLAGS
LDFLAGS: $LDFLAGS
LIBS: $LIBS
GTK Version: $GTK_VER
Cairo Version: $CAIRO_VER
DXF via dxflib: $with_dxf
Electric Fence Debugging: $with_efence
ImageMagick: $have_magick
(for test suite)
])