forked from eclipse-sumo/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
532 lines (480 loc) · 18.1 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
525
526
527
528
529
530
531
532
dnl Process this file with autoconf to produce a configure script.
AC_INIT(sumo, git)
AC_CONFIG_SRCDIR(src/sumo_main.cpp)
AC_CANONICAL_SYSTEM
dnl create an config-header
AC_CONFIG_HEADER(src/config.h)
dnl enable automake-support
AM_INIT_AUTOMAKE([foreign dist-zip tar-ustar])
AC_LANG([C++])
# avoiding warnings on ubuntu 16.04, there seem to be two variants of the ARFLAGS, one for automake, one for libttol
ARFLAGS=cr
AC_SUBST(ARFLAGS)
AR_FLAGS=cr
AC_SUBST(AR_FLAGS)
dnl the debug check has to be made before the program checks because it modifies
dnl CXXFLAGS.
AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],[enable sumo debugging code [default=no].])])
if test x$enable_debug = xyes; then
AC_DEFINE(_DEBUG, 1, [Define to 1 in order to enable sumo debugging code.])
CXXFLAGS="-std=c++11 -g -pthread $CXXFLAGS"
ac_enabled="$ac_enabled Debug"
program_transform_name="s,\$\$,D,; $program_transform_name"
else
CXXFLAGS="-std=c++11 -O2 -DNDEBUG $CXXFLAGS"
ac_disabled="$ac_disabled Debug"
fi
AC_ARG_ENABLE([profiling], [AS_HELP_STRING([--enable-profiling],[enable compilation of gprof profiling code [default=no].])])
if test x$enable_profiling = xyes; then
CXXFLAGS="-pg $CXXFLAGS"
ac_enabled="$ac_enabled Profiling"
else
ac_disabled="$ac_disabled Profiling"
fi
AC_ARG_ENABLE([coverage], [AS_HELP_STRING([--enable-coverage],[enable compilation of gcov coverage code [default=no].])])
if test x$enable_coverage = xyes; then
CXXFLAGS="-fprofile-arcs -ftest-coverage $CXXFLAGS -O0"
ac_enabled="$ac_enabled Coverage"
else
ac_disabled="$ac_disabled Coverage"
fi
AC_ARG_ENABLE([pic], [AS_HELP_STRING([--enable-pic],[enable compilation of position-independent code [default=no],])])
if test x$enable_pic = xyes; then
CXXFLAGS="-fPIC $CXXFLAGS"
ac_enabled="$ac_enabled PIC"
else
ac_disabled="$ac_disabled PIC"
fi
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
dnl enable libtool-support
dnl gives a deprecated warning for RANLIB with newer libtools
AC_PROG_RANLIB
AM_PROG_LIBTOOL
AC_DEFINE([POSITION_EPS], [0.1], [defines the epsilon to use on position comparison])
AC_DEFINE([NUMERICAL_EPS], [0.001], [defines the epsilon to use on general floating point comparison])
AM_CONDITIONAL([WITH_VERSION_H], test -d .git)
if test -d .git || test x$PACKAGE_VERSION == xgit -a -f src/version.h; then
AC_DEFINE([HAVE_VERSION_H], [1], [Define if auto-generated version.h should be used.])
else
AC_DEFINE_UNQUOTED(VERSION_STRING, "$PACKAGE_VERSION", [Defined if auto-generated version.h is unavailable.])
fi
dnl ---------------------------------------------
dnl Platform specific stuff
dnl - - - - - - - - - - - - - - - - - - - - - - -
case "$host" in
x86-*-linux* | ia64-*-linux* | i586-*-linux* | i686-*-linux* | x86_64-*-linux*)
dnl Make sure we are on architecture that supports SIMD
if test x$CXX = xclang++; then
CXXFLAGS="-msse2 $CXXFLAGS"
else
CXXFLAGS="-msse2 -mfpmath=sse $CXXFLAGS"
fi
;;
*-cygwin*)
AC_DEFINE([HAVE_CYGWIN], [1], [Define if compiling under cygwin])
AC_DEFINE([WIN32], [1], [Xerces and Fox expect this to be defined (cygwin)])
AC_DEFINE([NOMINMAX], [1], [Including windows.h gives errors otherwise (cygwin)])
;;
*-darwin*)
CPPFLAGS="$CPPFLAGS -I/opt/local/include"
export CPPFLAGS
LDFLAGS="$LDFLAGS -L/opt/local/lib"
export LDFLAGS
;;
esac
dnl ---------------------------------------------
dnl check for libraries...
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl ... for xerces 3.0
PKG_CHECK_MODULES([XERCES], [xerces-c >= 3.0],
[AC_DEFINE([XERCES3_SIZE_t],[XMLSize_t],[Define length for Xerces 3.])],
[AC_DEFINE([XERCES3_SIZE_t],[unsigned int],[Define length for Xerces 2.])])
dnl ... for xerces
AC_ARG_WITH([xerces], [AS_HELP_STRING([--with-xerces=DIR],[where Xerces-C is installed (libraries in DIR/lib, headers in DIR/include).])])
if test x"$with_xerces" != x; then
if test x"$with_xerces_libraries" = x; then
with_xerces_libraries=$with_xerces/lib
fi
if test x"$with_xerces_includes" = x; then
with_xerces_includes=$with_xerces/include
fi
fi
dnl ... for libs
LIB_XERCES="xerces-c"
AC_ARG_WITH([xerces-libraries], [AS_HELP_STRING([--with-xerces-libraries=DIR],[where the Xerces-C library is installed.])])
if test x"$with_xerces_libraries" = x; then
LDFLAGS="$LDFLAGS -L/usr/local/lib"
AC_CHECK_LIB([$LIB_XERCES], [main], [true],
[AC_MSG_ERROR([xerces-lib not found. Specify path with option --with-xerces-libraries=DIR.])])
else
save_ldflags=$LDFLAGS
LDFLAGS="-L$with_xerces_libraries"
export LDFLAGS
AC_CHECK_LIB([$LIB_XERCES], [main], [XERCES_LDFLAGS=$LDFLAGS],
[AC_MSG_ERROR([xerces-lib not found in "$with_xerces_libraries".])])
LDFLAGS=$save_ldflags
AC_SUBST(XERCES_LDFLAGS)
fi
AC_SUBST(LIB_XERCES)
dnl ... for includes
AC_ARG_WITH([xerces-includes], [AS_HELP_STRING([--with-xerces-includes=DIR],[where the Xerces-C includes are.])])
save_cppflags=$CPPFLAGS
if test x"$with_xerces_includes" = x; then
CPPFLAGS="$CPPFLAGS -I/usr/local/include -I/usr/include"
export CPPFLAGS
AC_CHECK_HEADER([xercesc/util/XercesVersion.hpp], [AM_CPPFLAGS="$CPPFLAGS $AM_CPPFLAGS"],
[AC_MSG_ERROR([xerces-includes not found. Specify path with option --with-xerces-includes=DIR.])])
else
CPPFLAGS="-I$with_xerces_includes"
export CPPFLAGS
AC_CHECK_HEADER([xercesc/util/XercesVersion.hpp], [AM_CPPFLAGS="$CPPFLAGS $AM_CPPFLAGS"],
[AC_MSG_ERROR([xerces-includes not found in "$with_xerces_includes".])])
fi
CPPFLAGS=$save_cppflags
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl ... for proj and gdal
AC_ARG_WITH([proj-gdal], [AS_HELP_STRING([--with-proj-gdal=DIR],[where PROJ and GDAL are installed (libraries in DIR/lib, headers in DIR/include).])])
if test x"$with_proj_gdal" != xno; then
if test x"$with_proj_gdal" != x; then
if test x"$with_proj_libraries" = x; then
with_proj_libraries=$with_proj_gdal/lib
fi
if test x"$with_proj_includes" = x; then
with_proj_includes=$with_proj_gdal/include
fi
if test x"$with_gdal_libraries" = x; then
with_gdal_libraries=$with_proj_gdal/lib
fi
if test x"$with_gdal_includes" = x; then
with_gdal_includes=$with_proj_gdal/include
fi
fi
dnl ... for proj.4
dnl ... for libs
AC_ARG_WITH([proj-libraries], [AS_HELP_STRING([--with-proj-libraries=DIR],[where the PROJ library is installed (overrides previous settings).])])
if test x"$with_proj_libraries" = x; then
AC_CHECK_LIB([proj], [main], [PROJ_LDFLAGS="-lproj"],
[AC_MSG_WARN([proj-lib not found. Specify path with option --with-proj-libraries=DIR.])])
else
save_ldflags=$LDFLAGS
LDFLAGS="-L$with_proj_libraries"
export LDFLAGS
AC_CHECK_LIB([proj], [main], [PROJ_LDFLAGS="$LDFLAGS -lproj"],
[AC_MSG_ERROR([proj-lib not found in "$with_proj_libraries".])])
LDFLAGS=$save_ldflags
fi
AC_SUBST(PROJ_LDFLAGS)
dnl ... for includes
AC_ARG_WITH([proj-includes], [AS_HELP_STRING([--with-proj-includes=DIR],[where the PROJ includes are (overrides previous settings).])])
if test x"$with_proj_includes" = x; then
AC_CHECK_HEADER([proj_api.h], [with_proj_includes=yes],
[AC_MSG_WARN([proj-includes not found. Specify path with option --with-proj-includes=DIR.])])
else
save_cppflags=$CPPFLAGS
CPPFLAGS="-I$with_proj_includes"
export CPPFLAGS
AC_CHECK_HEADER([proj_api.h], [AM_CPPFLAGS="$CPPFLAGS $AM_CPPFLAGS"],
[AC_MSG_ERROR([proj-includes not found in "$with_proj_includes".])])
CPPFLAGS=$save_cppflags
fi
fi
if test x"$with_proj_includes" != x && test x"$PROJ_LDFLAGS" != x; then
AC_DEFINE([HAVE_PROJ], [1], [defined if PROJ is available])
ac_enabled="$ac_enabled PROJ"
else
ac_disabled="$ac_disabled PROJ"
fi
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl ... for gdal
AC_ARG_WITH([gdal-config],
[AS_HELP_STRING([--with-gdal-config=FILE], [specify an alternative gdal-config file])],
[GDAL_CONFIG="$withval"], [GDAL_CONFIG=""])
if test x"$with_proj_gdal" != xno && test x"$with_gdal_config" != xno; then
if test -z $GDAL_CONFIG; then
AC_PATH_PROG([GDAL_CONFIG], [gdal-config])
if test -z $GDAL_CONFIG; then
AC_MSG_WARN([could not find gdal-config from libgdal within the current path. Specify path with option --with-gdal-config.])
fi
else
if test -f $GDAL_CONFIG; then
AC_MSG_RESULT([Using user-specified gdal-config file: $GDAL_CONFIG])
else
AC_MSG_ERROR([the user-specified gdal-config file $GDAL_CONFIG does not exist])
fi
fi
if test -z $GDAL_CONFIG; then
ac_disabled="$ac_disabled GDAL"
else
GDAL_CFLAGS="`$GDAL_CONFIG --cflags`"
GDAL_LDFLAGS="`$GDAL_CONFIG --libs`"
AC_SUBST([GDAL_LDFLAGS])
save_cppflags=$CPPFLAGS
CPPFLAGS="$GDAL_CFLAGS"
export CPPFLAGS
AC_CHECK_HEADER([ogr_api.h], [AM_CPPFLAGS="$CPPFLAGS $AM_CPPFLAGS"],
[AC_MSG_ERROR([gdal-includes not found.])])
CPPFLAGS=$save_cppflags
AC_DEFINE([HAVE_GDAL], [1], [defined if GDAL is available])
ac_enabled="$ac_enabled GDAL"
fi
else
ac_disabled="$ac_disabled GDAL"
fi
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl ... for fox
AC_ARG_WITH([fox-config],
[AS_HELP_STRING([--with-fox-config=FILE], [specify an alternative fox-config executable])],
[FOX_CONFIG="$withval"], [FOX_CONFIG=""])
if test x"$with_fox_config" != xno; then
if test -z $FOX_CONFIG; then
AC_PATH_PROG([FOX_CONFIG], [fox-config])
if test -z $FOX_CONFIG; then
AC_MSG_WARN([could not find fox-config from libfox within the current path. Specify path with option --with-fox-config.])
fi
else
if test -f $FOX_CONFIG; then
AC_MSG_RESULT([Using user-specified fox-config file: $FOX_CONFIG])
else
AC_MSG_ERROR([the user-specified fox-config file $FOX_CONFIG does not exist])
fi
fi
if test -z $FOX_CONFIG; then
ac_disabled="$ac_disabled GUI"
else
FOX_CFLAGS="`$FOX_CONFIG --cflags`"
FOX_LDFLAGS="`$FOX_CONFIG --libs`"
AC_SUBST([FOX_LDFLAGS])
save_cppflags=$CPPFLAGS
CPPFLAGS="$FOX_CFLAGS"
export CPPFLAGS
AC_CHECK_HEADER([fxver.h], [AM_CPPFLAGS="$CPPFLAGS $AM_CPPFLAGS"],
[AC_MSG_ERROR([fox-includes not found.])])
CPPFLAGS=$save_cppflags
AC_DEFINE([HAVE_FOX], [1], [defined if FOX is available])
ac_enabled="$ac_enabled GUI"
fi
else
ac_disabled="$ac_disabled GUI"
fi
AM_CONDITIONAL([WITH_GUI], [test x"$FOX_CONFIG" != x && test x"$with_fox_config" != xno])
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl ... for gtest
AC_ARG_WITH([gtest-config], [AS_HELP_STRING([--with-gtest-config=FILE], [specify an alternative gtest-config.])],
[GTEST_CONFIG="$withval"], [GTEST_CONFIG=""])
if test x"$with_gtest_config" != xno; then
if test -z $GTEST_CONFIG; then
AC_PATH_PROG([GTEST_CONFIG], [gtest-config])
else
if test -f $GTEST_CONFIG; then
AC_MSG_RESULT([Using user-specified gtest-config file: $GTEST_CONFIG])
else
AC_MSG_ERROR([the user-specified gtest-config file $GTEST_CONFIG does not exist])
fi
fi
if test -z $GTEST_CONFIG; then
ac_disabled="$ac_disabled UnitTests"
else
GTEST_CFLAGS="`$GTEST_CONFIG --cxxflags`"
GTEST_LDFLAGS="`$GTEST_CONFIG --libs`"
AC_SUBST([GTEST_LDFLAGS])
save_cppflags=$CPPFLAGS
CPPFLAGS="$GTEST_CFLAGS"
export CPPFLAGS
AC_CHECK_HEADER([gtest/gtest.h], [AM_CPPFLAGS="$CPPFLAGS $AM_CPPFLAGS"],
[AC_MSG_ERROR([gtest-includes not found.])])
CPPFLAGS=$save_cppflags
ac_enabled="$ac_enabled UnitTests"
fi
else
ac_disabled="$ac_disabled UnitTests"
fi
AM_CONDITIONAL([WITH_GTEST], [test x"$GTEST_CONFIG" != x && test x"$with_gtest_config" != xno])
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl ... for python
AC_ARG_WITH([python], [AS_HELP_STRING([--with-python],[enable python scripting.])])
if test x"$with_python" == x; then
with_python=no
fi
if test x"$with_python" != xno; then
PYTHON_LIBS=`python -c "import distutils.sysconfig; bl = distutils.sysconfig.get_config_var('BLDLIBRARY'); print(bl if bl else '-lpython2.7')"`
AC_SUBST(PYTHON_LIBS)
save_cppflags=$CPPFLAGS
PYTHON_INCLUDES=`python -c "import distutils.sysconfig; print(distutils.sysconfig.get_config_var('INCLUDEPY'))"`
CPPFLAGS="$CPPFLAGS -I$PYTHON_INCLUDES"
export CPPFLAGS
AC_CHECK_HEADER([Python.h], [AM_CPPFLAGS="$CPPFLAGS $AM_CPPFLAGS"],
[AC_MSG_ERROR([Python.h not found. Please install the devel package.])])
CPPFLAGS=$save_cppflags
AC_DEFINE([HAVE_PYTHON], [1], [defined if python is available])
ac_enabled="$ac_enabled Python"
else
ac_disabled="$ac_disabled Python"
fi
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl ... for OpenSceneGraph
AC_ARG_WITH([osg], [AS_HELP_STRING([--with-osg],[enable OpenSceneGraph rendering.])])
if test x"$with_osg" == x; then
with_osg=no
fi
if test x"$with_osg" != xno; then
AC_CHECK_HEADER([osg/Config],
[OSG_LIBS="-losg -losgGA -losgViewer -losgUtil -losgDB -lOpenThreads -losgText" AC_SUBST(OSG_LIBS)],
[AC_MSG_ERROR([osg/Config not found. Please install the devel package.])])
AC_DEFINE([HAVE_OSG], [1], [defined if osg is available])
ac_enabled="$ac_enabled OSG"
else
ac_disabled="$ac_disabled OSG"
fi
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl ... for ffmpeg
AC_ARG_WITH([ffmpeg], [AS_HELP_STRING([--with-ffmpeg],[enable ffmpeg-based features.])])
if test x"$with_ffmpeg" == x; then
with_ffmpeg=no
fi
if test x$with_ffmpeg != xno; then
save_cppflags=$CPPFLAGS
CPPFLAGS="$CPPFLAGS -I/usr/include/ffmpeg -I/usr/local/include"
export CPPFLAGS
AC_CHECK_HEADER([libavformat/version.h],
[AM_CPPFLAGS="$CPPFLAGS $AM_CPPFLAGS"
AC_DEFINE([HAVE_FFMPEG], [1], [defined if ffmpeg is available])
FFMPEG_LIBS="-lavformat -lavcodec -lavutil -lswscale" AC_SUBST(FFMPEG_LIBS)
ac_enabled="$ac_enabled ffmpeg"
found_ffmpeg=yes],
[ac_disabled="$ac_disabled ffmpeg"
found_ffmpeg=no])
if test x$with_ffmpeg = xyes && test x$found_ffmpeg = xno; then
AC_MSG_ERROR([ffmpeg libraries (libavcodec, libavformat, libavutil, libswscale) not found.])
fi
CPPFLAGS=$save_cppflags
else
ac_disabled="$ac_disabled ffmpeg"
fi
dnl - - - - - - - - - - - - - - - - - - - - - - -
dnl general flags
AM_CPPFLAGS="-I$PWD/$srcdir/src $AM_CPPFLAGS"
AC_SUBST(AM_CPPFLAGS)
AC_SUBST(AM_CXXFLAGS)
AC_DEFINE_UNQUOTED([HAVE_ENABLED], ["$host$ac_enabled"], [Reporting string for enabled options])
dnl ---------------------------------------------
dnl Checks proposed by autoscan.
dnl Checks for header files.
AC_FUNC_ALLOCA
AC_HEADER_STDC
AC_CHECK_HEADERS([float.h limits.h malloc.h math.h stddef.h stdlib.h string.h sys/time.h unistd.h wchar.h])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_STRUCT_TM
AC_C_VOLATILE
dnl Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_FUNC_SELECT_ARGTYPES
AC_TYPE_SIGNAL
AC_FUNC_STAT
AC_CHECK_FUNCS([floor getcwd gettimeofday memset pow select socket sqrt])
dnl ---------------------------------------------
dnl add here all your Makefiles. These will be created by configure
AC_CONFIG_FILES([
src/Makefile
src/activitygen/Makefile
src/activitygen/activities/Makefile
src/activitygen/city/Makefile
src/foreign/Makefile
src/foreign/eulerspiral/Makefile
src/foreign/fontstash/Makefile
src/foreign/PHEMlight/Makefile
src/foreign/PHEMlight/cpp/Makefile
src/foreign/rtree/Makefile
src/foreign/tcpip/Makefile
src/gui/Makefile
src/gui/dialogs/Makefile
src/guinetload/Makefile
src/guisim/Makefile
src/microsim/Makefile
src/microsim/actions/Makefile
src/microsim/cfmodels/Makefile
src/microsim/devices/Makefile
src/microsim/lcmodels/Makefile
src/microsim/logging/Makefile
src/microsim/output/Makefile
src/microsim/pedestrians/Makefile
src/microsim/traffic_lights/Makefile
src/microsim/trigger/Makefile
src/marouter/Makefile
src/netbuild/Makefile
src/netedit/additionals/Makefile
src/netedit/changes/Makefile
src/netedit/dialogs/Makefile
src/netedit/frames/Makefile
src/netedit/netelements/Makefile
src/netedit/Makefile
src/mesogui/Makefile
src/mesosim/Makefile
src/osgview/Makefile
src/netgen/Makefile
src/netimport/Makefile
src/netimport/vissim/Makefile
src/netimport/vissim/tempstructs/Makefile
src/netimport/vissim/typeloader/Makefile
src/netload/Makefile
src/netwrite/Makefile
src/od/Makefile
src/polyconvert/Makefile
src/router/Makefile
src/dfrouter/Makefile
src/duarouter/Makefile
src/jtrrouter/Makefile
src/tools/Makefile
src/traci_testclient/Makefile
src/traci-server/Makefile
src/libsumo/Makefile
src/utils/Makefile
src/utils/common/Makefile
src/utils/distribution/Makefile
src/utils/emissions/Makefile
src/utils/foxtools/Makefile
src/utils/geom/Makefile
src/utils/gui/Makefile
src/utils/gui/div/Makefile
src/utils/gui/events/Makefile
src/utils/gui/globjects/Makefile
src/utils/gui/images/Makefile
src/utils/gui/settings/Makefile
src/utils/gui/tracker/Makefile
src/utils/gui/windows/Makefile
src/utils/importio/Makefile
src/utils/iodevices/Makefile
src/utils/options/Makefile
src/utils/shapes/Makefile
src/utils/traci/Makefile
src/utils/vehicle/Makefile
src/utils/xml/Makefile
unittest/Makefile
unittest/src/Makefile
unittest/src/microsim/Makefile
unittest/src/netbuild/Makefile
unittest/src/utils/Makefile
unittest/src/utils/common/Makefile
unittest/src/utils/foxtools/Makefile
unittest/src/utils/geom/Makefile
unittest/src/utils/iodevices/Makefile
bin/Makefile
Makefile])
AC_OUTPUT
dnl ---------------------------------------------
dnl Summary
AC_MSG_RESULT()
AC_MSG_RESULT([Optional features summary])
AC_MSG_RESULT([-------------------------])
AC_MSG_RESULT([Enabled:$ac_enabled])
AC_MSG_RESULT([Disabled:$ac_disabled])