summaryrefslogtreecommitdiff
path: root/configure.ac
blob: bc1bd6985368a88837b442ed501e1c1442c229f8 (plain)
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
# Process this file with autoconf to produce a configure script.

############################################################
# Autoconf requirements
############################################################

m4_include([gitrev.m4])

AC_PREREQ(2.59)
AC_INIT([chrysalide], [gitversion], [nocbos@gmail.com])

AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])

AM_INIT_AUTOMAKE
AM_SILENT_RULES

AM_GNU_GETTEXT_VERSION([0.18.3])
AM_GNU_GETTEXT([external])

AC_CONFIG_SRCDIR([src/main.c])


############################################################
# Information on the package
############################################################

#--- Checks for programs

AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_LEX
AC_PROG_YACC
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL

AC_PATH_PROG(YACC_INST, $YACC)
AC_PATH_PROG(LEX_INST, $LEX)


#--- Checks for libraries

AC_CHECK_LIB([dl], [dlopen])


#--- Checks for header files

AC_HEADER_DIRENT
AC_HEADER_STDBOOL
AC_HEADER_STDC
AC_CHECK_HEADERS([malloc.h])
AC_CHECK_HEADERS([netdb.h])
AC_CHECK_HEADERS([stdlib.h])
AC_CHECK_HEADERS([string.h])
AC_CHECK_HEADERS([unistd.h])


#--- Checks for types

AC_TYPE_SIZE_T


#--- Checks for structures

AC_STRUCT_TM


#--- Checks for compiler characteristics

AC_C_CONST


#--- Checks for library functions

AC_FUNC_CLOSEDIR_VOID
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_FUNC_STAT
AC_FUNC_STRFTIME
AC_FUNC_VPRINTF

AC_CHECK_FUNCS([pow])
AC_CHECK_FUNCS([regcomp])
AC_CHECK_FUNCS([strdup])
AC_CHECK_FUNCS([strerror])
AC_CHECK_FUNCS([strndup])
AC_CHECK_FUNCS([strrchr])


#--- Checks for system services



#--- Autoheader Macros

AH_TEMPLATE([REVISION], [Define the version number of the program for the about box.])
AH_TEMPLATE([PACKAGE_SOURCE_DIR], [Define the directory where the code source is waiting for being compiled.])
AH_TEMPLATE([PIXMAPS_DIR], [Define the directory where the pictures will be installed.])
AH_TEMPLATE([THEMES_DIR], [Define the main directory where all themes will be installed.])
AH_TEMPLATE([PLUGINS_LIB_DIR], [Define the directory where the plugin librairies are installed.])
AH_TEMPLATE([PLUGINS_DATA_DIR], [Define the directory where the plugin data is installed.])
AH_TEMPLATE([LOCALE_DIR], [Define the directory where the message catalogs are installed.])


AC_DEFINE_UNQUOTED(REVISION, AC_PACKAGE_VERSION)

if test "x${datadir}" = 'x${prefix}/share'; then
   if test "x${prefix}" = "xNONE"; then
      pkgdatadir="${ac_default_prefix}/share/${PACKAGE}"
   else
      pkgdatadir="${prefix}/share/${PACKAGE}"
   fi
elif test "x${datadir}" = 'x${datarootdir}'; then
   if test "x${datarootdir}" = 'x${prefix}/share'; then
      if test "x${prefix}" = "xNONE"; then
         pkgdatadir="${ac_default_prefix}/share/${PACKAGE}"
      else
         pkgdatadir="${prefix}/share/${PACKAGE}"
      fi
   else
      pkgdatadir="${datarootdir}/${PACKAGE}"
   fi 
else
   pkgdatadir="${datadir}/${PACKAGE}"
fi

packagesrcdir=`cd $srcdir && pwd`
AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, "${packagesrcdir}")

pixmapsdir="${pkgdatadir}/pixmaps"
AC_SUBST(pixmapsdir)

AC_DEFINE_UNQUOTED(PIXMAPS_DIR, "${pixmapsdir}")

themesdir="${pkgdatadir}/themes"
AC_SUBST(themesdir)

AC_DEFINE_UNQUOTED(THEMES_DIR, "${themesdir}")

pluginslibdir="${libdir}/chrysalide/plugins"
AC_SUBST(pluginslibdir)

AC_DEFINE_UNQUOTED(PLUGINS_LIB_DIR, "${pluginslibdir}")

pluginsdatadir="${pkgdatadir}/plugins"
AC_SUBST(pluginsdatadir)

AC_DEFINE_UNQUOTED(PLUGINS_DATA_DIR, "${pluginsdatadir}")

if test "x${prefix}" = "xNONE"; then
   AC_DEFINE_UNQUOTED(LOCALE_DIR, "${ac_default_prefix}/share/locale")
else
   AC_DEFINE_UNQUOTED(LOCALE_DIR, "${prefix}/share/locale")
fi


############################################################
# Compilation options
############################################################

AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], [compile with debugging support [default=no]]),
              [], [enable_debug=no])

AC_ARG_WITH(local-resources,
            AS_HELP_STRING([--with-local-resources], [discard resources from local sources [default=yes]]),
            [], [with_local_resources=yes])

#--- Small enumerations

CFLAGS="$CFLAGS -fshort-enums -D_LARGEFILE64_SOURCE"

#--- Is debug mode needed ?

if test "x$enable_debug" = "xyes"; then
   DEBUG_CFLAGS="$DEBUG_CFLAGS -O0 -ggdb -gdwarf-2 -DDEBUG"
else
   DEBUG_CFLAGS="$DEBUG_CFLAGS -DNDEBUG"
fi

AC_SUBST(DEBUG_CFLAGS)

#--- Discard local sources when looking for resources ?

if test "x$with_local_resources" = "xno"; then
   CFLAGS="$CFLAGS -DDISCARD_LOCAL"
fi

AC_SUBST(CFLAGS)

#--- Compilation warnings

#-Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wpointer-arith -Wmissing-prototypes

WARNING_FLAGS="-Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wuninitialized -Wparentheses -Wpointer-arith -Wmissing-prototypes"

#-Wcast-qual -Wconversion -Wsign-compare -Wdisabled-optimization

AC_SUBST(WARNING_FLAGS)

# _BSD_SOURCE: htobe64, be64toh
# _XOPEN_SOURCE: strdup, snprintf
# _ISOC99_SOURCE: INFINITY; NAN
# GTK_DISABLE_DEPRECATED: on reste conforme au C99
#COMPLIANCE_FLAGS="-D_BSD_SOURCE -D_GNU_SOURCE -DGTK_DISABLE_DEPRECATED"
COMPLIANCE_FLAGS="-D_DEFAULT_SOURCE -D_GNU_SOURCE"

AC_SUBST(COMPLIANCE_FLAGS)

#--- Checks for GTK 2.0

PKG_CHECK_MODULES(LIBGTK,gtk+-3.0 >= 3.8.6,[libgtk_found=yes],[libgtk_found=no])

if test "$libgtk_found" = "yes"; then
   libgtk_version=`pkg-config gtk+-3.0 --modversion`
else
   libgtk_version='-'
fi

AC_SUBST(LIBGTK_CFLAGS)
AC_SUBST(LIBGTK_LIBS)


#--- Checks for libxml2

PKG_CHECK_MODULES(LIBXML,libxml-2.0 >= 2.6.11,[libxml_found=yes],[libxml_found=no])

if test "$libxml_found" = "yes"; then
   libxml_version=`pkg-config libxml-2.0 --modversion`
else
   libxml_version='-'
fi

AC_SUBST(LIBXML_CFLAGS)
AC_SUBST(LIBXML_LIBS)


#--- Checks for libarchive

PKG_CHECK_MODULES(LIBARCHIVE,libarchive >= 3.1.2,[libarchive_found=yes],[libarchive_found=no])

if test "$libarchive_found" = "yes"; then
   libarchive_version=`pkg-config libarchive --modversion`
else
   libarchive_version='-'
fi

AC_SUBST(LIBARCHIVE_CFLAGS)
AC_SUBST(LIBARCHIVE_LIBS)


#--- Checks for libsqlite

PKG_CHECK_MODULES(LIBSQLITE,sqlite3 >= 3.8.2,[libsqlite_found=yes],[libsqlite_found=no])

if test "$libsqlite_found" = "yes"; then
   libsqlite_version=`pkg-config sqlite3 --modversion`
else
   libsqlite_version='-'
fi

AC_SUBST(LIBSQLITE_CFLAGS)
AC_SUBST(LIBSQLITE_LIBS)


#--- Checks for libssl

PKG_CHECK_MODULES(LIBSSL,libssl >= 1.0.1k,[libssl_found=yes],[libssl_found=no])

if test "$libssl_found" = "yes"; then
   libssl_version=`pkg-config libssl --modversion`
else
   libssl_version='-'
fi

AC_SUBST(LIBSSL_CFLAGS)
AC_SUBST(LIBSSL_LIBS)


#--- Checks for Python

if test "x$enable_debug" = "xyes"; then
   AC_CHECK_PROG(python3_cfg_binary, [python3-dbg-config] , yes)
else
   AC_CHECK_PROG(python3_cfg_binary, [python3-config] , yes)
fi

AM_CONDITIONAL([HAVE_PYTHON3_CONFIG], [test "x$python3_cfg_binary" = "xyes"])

if test "x$python3_cfg_binary" = "xyes"; then

   if test "x$enable_debug" = "xyes"; then
      LIBPYTHON_CFLAGS=`python3-dbg-config --cflags`
      LIBPYTHON_LIBS=`python3-dbg-config --libs`
      LIBPYTHON_ABI_FLAGS=`python3-dbg-config --abiflags`
   else
      LIBPYTHON_CFLAGS=`python3-config --cflags`
      LIBPYTHON_LIBS=`python3-config --libs`
      LIBPYTHON_ABI_FLAGS=`python3-config --abiflags`
   fi

   AC_SUBST(LIBPYTHON_CFLAGS)
   AC_SUBST(LIBPYTHON_LIBS)
   AC_DEFINE_UNQUOTED(LIBPYTHON_ABI_FLAGS, "${LIBPYTHON_ABI_FLAGS}", [ABI flags of the linked Python library])

   python3_version=`python3 --version | cut -d ' ' -f 2`

else

   python3_version='-'

fi


#--- Checks for pygobject-3.0

PKG_CHECK_MODULES(LIBPYGOBJECT,pygobject-3.0 >= 3.12.1,[libpygobject_found=yes],[libpygobject_found=no])

if test "$libpygobject_found" = "yes"; then
   libpygobject_version=`pkg-config pygobject-3.0 --modversion`
else
   libpygobject_version='-'
fi

AC_SUBST(LIBPYGOBJECT_CFLAGS)
AC_SUBST(LIBPYGOBJECT_LIBS)


############################################################
# Outputting files
############################################################

AC_CONFIG_FILES([stamp-h po/Makefile.in], [echo timestamp > stamp-h])

AC_CONFIG_COMMANDS([marshal], [echo -e "VOID:UINT64\nVOID:INT,UINT64,INT\nVOID:OBJECT,OBJECT\nVOID:ENUM,OBJECT\nVOID:ENUM,ENUM\nVOID:BOOLEAN,UINT64\nVOID:BOOLEAN,ULONG,ULONG\nVOID:INT,INT\nVOID:OBJECT,BOOLEAN\nVOID:ULONG,BOOLEAN" > src/glibext/chrysamarshal.list])

AC_CONFIG_FILES([Makefile
                 doc/Makefile
                 pixmaps/Makefile
                 plugins/Makefile
                 plugins/arm/Makefile
                 plugins/arm/python/Makefile
                 plugins/arm/python/v7/Makefile
                 plugins/arm/v7/Makefile
                 plugins/arm/v7/opdefs/Makefile
                 plugins/arm/v7/opcodes/Makefile
                 plugins/arm/v7/operands/Makefile
                 plugins/arm/v7/registers/Makefile
                 plugins/dalvik/Makefile
                 plugins/dalvik/operands/Makefile
                 plugins/dalvik/pseudo/Makefile
                 plugins/dalvik/v35/Makefile
                 plugins/dalvik/v35/opcodes/Makefile
                 plugins/dalvik/v35/opdefs/Makefile
                 plugins/devdbg/Makefile
                 plugins/dex/Makefile
                 plugins/dex/python/Makefile
                 plugins/dexbnf/Makefile
                 plugins/dexbnf/python/Makefile
                 plugins/elf/Makefile
                 plugins/elf/python/Makefile
                 plugins/fmtp/Makefile
                 plugins/itanium/Makefile
                 plugins/itanium/python/Makefile
                 plugins/libcsem/Makefile
                 plugins/lnxsyscalls/Makefile
                 plugins/mobicore/Makefile
                 plugins/pychrysalide/Makefile
                 plugins/pychrysalide/analysis/Makefile
                 plugins/pychrysalide/analysis/contents/Makefile
                 plugins/pychrysalide/analysis/db/Makefile
                 plugins/pychrysalide/analysis/db/items/Makefile
                 plugins/pychrysalide/analysis/types/Makefile
                 plugins/pychrysalide/arch/Makefile
                 plugins/pychrysalide/common/Makefile
                 plugins/pychrysalide/core/Makefile
                 plugins/pychrysalide/debug/Makefile
                 plugins/pychrysalide/debug/gdbrsp/Makefile
                 plugins/pychrysalide/format/Makefile
                 plugins/pychrysalide/glibext/Makefile
                 plugins/pychrysalide/gtkext/Makefile
                 plugins/pychrysalide/gui/Makefile
                 plugins/pychrysalide/gui/core/Makefile
                 plugins/pychrysalide/gui/panels/Makefile
                 plugins/pychrysalide/mangling/Makefile
                 plugins/python/Makefile
                 plugins/python/apkfiles/Makefile
                 plugins/readdex/Makefile
                 plugins/readelf/Makefile
                 plugins/readmc/Makefile
                 plugins/ropgadgets/Makefile
                 src/Makefile
                 src/analysis/Makefile
                 src/analysis/contents/Makefile
                 src/analysis/db/Makefile
                 src/analysis/db/items/Makefile
                 src/analysis/db/misc/Makefile
                 src/analysis/disass/Makefile
                 src/analysis/human/Makefile
                 src/analysis/human/asm/Makefile
                 src/analysis/types/Makefile
                 src/arch/Makefile
                 src/arch/operands/Makefile
                 src/common/Makefile
                 src/core/Makefile
                 src/debug/Makefile
                 src/debug/gdbrsp/Makefile
                 src/format/Makefile
                 src/format/dwarf/Makefile
                 src/format/dwarf/v2/Makefile
                 src/format/dwarf/v3/Makefile
                 src/format/dwarf/v4/Makefile
                 src/format/java/Makefile
                 src/format/pe/Makefile
                 src/glibext/Makefile
                 src/glibext/generators/Makefile
                 src/gtkext/Makefile
                 src/gtkext/graph/Makefile
                 src/gui/Makefile
                 src/gui/core/Makefile
                 src/gui/dialogs/Makefile
                 src/gui/menus/Makefile
                 src/gui/panels/Makefile
                 src/gui/tb/Makefile
                 src/mangling/Makefile
                 src/plugins/Makefile
                 tools/Makefile
                 tools/d2c/Makefile
                 tools/d2c/args/Makefile
                 tools/d2c/assert/Makefile
                 tools/d2c/bits/Makefile
                 tools/d2c/conv/Makefile
                 tools/d2c/desc/Makefile
                 tools/d2c/format/Makefile
                 tools/d2c/hooks/Makefile
                 tools/d2c/id/Makefile
                 tools/d2c/pattern/Makefile
                 tools/d2c/rules/Makefile
                 themes/Makefile
                 themes/Adwaita/Makefile])

AC_OUTPUT


echo
echo -n $PACKAGE r
echo AC_PACKAGE_VERSION

echo
echo The GNU Image Manipulation Program Toolkit... : $libgtk_version
echo The XML C parser and toolkit of Gnome........ : $libxml_version
echo The flexible interface for archives I/O...... : $libarchive_version
echo The small, fast and reliable database engine. : $libsqlite_version
echo The cryptography and SSL/TLS toolkit......... : $libssl_version

echo
echo Available Python programming language........ : $python3_version
echo The Python GObject bindings.................. : $libpygobject_version

echo
echo Found lexical analyzer generator............. : $LEX_INST
echo Found general-purpose parser generator....... : $YACC_INST

echo
echo Print debugging messages..................... : $enable_debug

if test -z "$LEX_INST" -o -z "$YACC_INST"; then

   echo

   m4_define([flex_bison_warning],[m4_joinall([m4_newline([])],
          [Only code from a release archive can be compiled without analyzer and parser generators.],
          [If the sources come from a repository snapshot, please install all the requiered dependencies for the software.])])

   AC_MSG_WARN([flex_bison_warning])

fi

echo
echo configure complete, now type \'make\'
echo