forked from didier-barvaux/rohc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
1017 lines (908 loc) · 35.4 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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
#
# Process this file with autoconf to produce a configure script.
#
# Authors: Didier Barvaux <didier.barvaux@toulouse.viveris.com>
# Didier Barvaux <didier@barvaux.org>
# Mikhail Gruzdev <michail.gruzdev@gmail.com>
#
AC_INIT([ROHC library], 2.3.0, [https://rohc-lib.org/],
[rohc], [https://rohc-lib.org/])
AC_CONFIG_SRCDIR([src])
AM_CONFIG_HEADER([config.h])
# Retrieve the git revision number
if test -d "$srcdir/.git/" ; then
git_bin="`which git`"
if test $? -ne 0 ; then
PACKAGE_REVNO="~unknown"
else
${git_bin} describe --tags | grep -qE '^rohc-[[0-9]]+\.[[0-9]]+\.[[0-9]]+$'
if test $? -eq 0 ; then
# git revno matches a tag, revno is thus useless
PACKAGE_REVNO=""
else
# git revno is not a well-known version, revno is useful
PACKAGE_REVNO="~`${git_bin} rev-parse --short @`"
fi
fi
elif test -f "$srcdir/git_ref" ; then
PACKAGE_REVNO="`cat $srcdir/git_ref`"
else
PACKAGE_REVNO=""
fi
AC_SUBST(PACKAGE_REVNO)
AC_DEFINE_UNQUOTED([PACKAGE_REVNO], ["$PACKAGE_REVNO"],
[VCS revision number])
# Define library versioning:
#
# Option -version-info current:revision:age <-> libXXX.so.current.age.revision
# - current = the number of the current interface exported by the library.
# - revision = the implementation number of the current interface exported
# by this library.
# - age = the number of previous additional interfaces supported by this
# library, ie. compatibility with previous versions.
#
# See http://sources.redhat.com/autobook/autobook/autobook_91.html for details.
#
# Basic rules are:
# - library code modified: REVISION++
# - interfaces changed/added/removed: CURRENT++ REVISION=0
# - interfaces added: AGE++
# - interfaces removed: AGE=0
#
AC_SUBST([ROHC_API_CURRENT], 3)
AC_SUBST([ROHC_API_REVISION], 0)
AC_SUBST([ROHC_API_AGE], 0)
# Define a package homepage in a way compatible with autoconf < 2.64
m4_ifndef([AC_PACKAGE_URL],
[AC_DEFINE([PACKAGE_URL], ["https://rohc-lib.org/"],
[Define to home page for this package])
AC_SUBST([PACKAGE_URL], ["https://rohc-lib.org/"])])
# Init automake with:
# - silent rules enabled to make 'make' less verbose, but do not call the
# AM_SILENT_RULES macro if it is not defined to keep compatibility with
# automake < 1.11 for the moment.
# - color-tests to get nice colored results for tests (currently disabled
# to keep compatibility with automake 1.10 for the moment.
# - prefer bzip2 over gzip for dist tarballs
# - tar-ustar to allow paths that exceeds 99 characters in the dist tarball
AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-bzip2 tar-pax parallel-tests])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
# Init libtool:
# - require >= 2.2.0,
# - disable static libraries by default,
# - ready for Windows DLL
LT_PREREQ([2.2.0])
LT_INIT([disable-static win32-dll])
# CFLAGS/LDFLAGS default values, more will be added on purpose
configure_cflags="-g -Wall -Wstrict-prototypes -Wextra"
configure_cflags="${configure_cflags} -Wunused-function -Wunused-variable"
configure_cflags="${configure_cflags} -Wshadow"
# -Wframe-larger-than is not praticable without -O1 or greater
# (may be overloaded with CFLAGS environment variable)
configure_cflags_for_lib="-O2 -Wframe-larger-than=1024"
configure_ldflags=""
# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
# check some newer CFLAGS
#### -Wunknown-warning-option
AC_MSG_CHECKING([whether compiler understands -Wunknown-warning-option])
old_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -Werror -Wunknown-warning-option"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
[unknown_warning_option=-Wunknown-warning-option],
[unknown_warning_option=""])
if test "x${unknown_warning_option}" != "x" ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
CFLAGS="$old_CFLAGS"
#### -Wmisleading-indentation
AC_MSG_CHECKING([whether compiler understands -Wmisleading-indentation])
old_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -Werror $unknown_warning_option -Wmisleading-indentation"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
[misleading_indentation=yes], [misleading_indentation=no])
if test "x${misleading_indentation}" = "xyes" ; then
AC_MSG_RESULT(yes)
configure_cflags="${configure_cflags} -Wmisleading-indentation"
else
AC_MSG_RESULT(no)
fi
CFLAGS="$old_CFLAGS"
#### -Wshift-overflow=2
AC_MSG_CHECKING([whether compiler understands -Wshift-overflow=2])
old_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -Werror $unknown_warning_option -Wshift-overflow=2"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
[shift_overflow_2=yes], [shift_overflow_2=no])
if test "x${shift_overflow_2}" = "xyes" ; then
AC_MSG_RESULT(yes)
configure_cflags="${configure_cflags} -Wshift-overflow=2"
else
AC_MSG_RESULT(no)
fi
CFLAGS="$old_CFLAGS"
#### -Wswitch-default
AC_MSG_CHECKING([whether compiler understands -Wswitch-default])
old_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -Werror $unknown_warning_option -Wswitch-default"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [switch_default=yes], [switch_default=no])
if test "x${switch_default}" = "xyes" ; then
AC_MSG_RESULT(yes)
configure_cflags="${configure_cflags} -Wswitch-default"
else
AC_MSG_RESULT(no)
fi
CFLAGS="$old_CFLAGS"
#### -Wswitch-enum
#### disabled because of too many warnings with packet types
#AC_MSG_CHECKING([whether compiler understands -Wswitch-enum])
#old_CFLAGS="$CFLAGS"
#CFLAGS="$CFLAGS -Werror $unknown_warning_option -Wswitch-enum"
#AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [switch_enum=yes], [switch_enum=no])
#if test "x${switch_enum}" = "xyes" ; then
# AC_MSG_RESULT(yes)
# configure_cflags="${configure_cflags} -Wswitch-enum -Wno-error=switch-enum"
#else
# AC_MSG_RESULT(no)
#fi
#CFLAGS="$old_CFLAGS"
#### -Wswitch-bool
AC_MSG_CHECKING([whether compiler understands -Wswitch-bool])
old_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -Werror $unknown_warning_option -Wswitch-bool"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [switch_bool=yes], [switch_bool=no])
if test "x${switch_bool}" = "xyes" ; then
AC_MSG_RESULT(yes)
configure_cflags="${configure_cflags} -Wswitch-bool"
else
AC_MSG_RESULT(no)
fi
CFLAGS="$old_CFLAGS"
#### -Wc99-c11-compat
#### disabled because of too many warnings with unnamed structs/unions and
#### _Static_assert
#AC_MSG_CHECKING([whether compiler understands -Wc99-c11-compat])
#old_CFLAGS="$CFLAGS"
#CFLAGS="$CFLAGS -Werror $unknown_warning_option -Wc99-c11-compat"
#AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [c99_c11_compat=yes], [c99_c11_compat=no])
#if test "x${c99_c11_compat}" = "xyes" ; then
# AC_MSG_RESULT(yes)
# configure_cflags="${configure_cflags} -Wc99-c11-compat -Wno-error=c99-c11-compat"
#else
# AC_MSG_RESULT(no)
#fi
#CFLAGS="$old_CFLAGS"
#### -Wsuggest-attribute=const
AC_MSG_CHECKING([whether compiler understands -Wsuggest-attribute=const])
old_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -Werror $unknown_warning_option -Wsuggest-attribute=const"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[int a;]], [[ a = 1;]])],
[suggest_attribute_const=yes], [suggest_attribute_const=no])
if test "x${suggest_attribute_const}" = "xyes" ; then
AC_MSG_RESULT(yes)
configure_cflags="${configure_cflags} -Wsuggest-attribute=const"
else
AC_MSG_RESULT(no)
fi
CFLAGS="$old_CFLAGS"
#### -Wsuggest-attribute=pure
#### disabled because some suggestions cannot be applied because of assertions
#AC_MSG_CHECKING([whether compiler understands -Wsuggest-attribute=pure])
#old_CFLAGS="$CFLAGS"
#CFLAGS="$CFLAGS -Werror $unknown_warning_option -Wsuggest-attribute=pure"
#AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[int a;]], [[ a = 1;]])],
# [suggest_attribute_pure=yes], [suggest_attribute_pure=no])
#if test "x${suggest_attribute_pure}" = "xyes" ; then
# AC_MSG_RESULT(yes)
# configure_cflags="${configure_cflags} -Wsuggest-attribute=pure -Wno-error=suggest-attribute=pure"
#else
# AC_MSG_RESULT(no)
#fi
#CFLAGS="$old_CFLAGS"
# Checks for header files.
AC_CHECK_HEADERS([stdio.h stdlib.h string.h strings.h])
AC_CHECK_HEADERS([time.h sys/time.h])
AC_CHECK_HEADERS([arpa/inet.h]) # ntohl, htonl, ntohs, htons on Linux
AC_CHECK_HEADERS([winsock2.h]) # ntohl, htonl, ntohs, htons on Windows
AC_CHECK_HEADERS([sys/types.h]) # ntohl, htonl, ntohs, htons on OpenBSD
# Handle library flags according to the platform
if test "x$ac_cv_header_winsock2_h" = "xyes" ; then
# for windows platforms
additional_platform_libs="-lws2_32"
else
# other platforms
additional_platform_libs=""
fi
AC_SUBST([additional_platform_libs], [$additional_platform_libs])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_INLINE
AC_C_BIGENDIAN
AC_PROG_CC_C99
if test "x$ac_cv_prog_cc_c99" = "xno" ; then
echo
echo "ERROR: your compiler cannot run in C99 mode"
echo
echo "Please use another compiler or tweak compiler options and try again."
exit 1
fi
# Checks for library functions.
AC_CHECK_FUNCS([malloc calloc free memcpy memcmp])
AC_CHECK_FUNCS([ntohl htonl ntohs htons])
# Define uint*_t and u_int*_t if not defined on target platform
AC_TYPE_UINT8_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
# Special tweaks for mingw
AC_CANONICAL_HOST
if test "x$host_os" = "xmingw32" || \
test "x$host_os" = "xmingw64" ; then
# Avoid warnings about 'unknown conversion type character ‘z’ in format'
configure_cflags="${configure_cflags} -D__USE_MINGW_ANSI_STDIO=1"
# Tell mingw to pack structs and bitfields the way gcc does
configure_cflags="${configure_cflags} -mno-ms-bitfields"
# Enable dead code on mingw64 to avoid warnings
configure_cflags="${configure_cflags} -DENABLE_DEAD_CODE"
if test "x$enable_shared" = "xyes" ; then
configure_ldflags="${configure_ldflags} -Wl,--no-undefined"
fi
fi
# get extra debug traces
AC_ARG_ENABLE(rohc_debug,
AS_HELP_STRING([--enable-rohc-debug],
[enable library extra debug traces with \
performances impact [[default=no]]]),
[enable_rohc_debug=$enableval],
[enable_rohc_debug=no])
if test "x$enable_rohc_debug" = "xyes" ; then
rohc_extra_debug=1
elif test "x$enable_rohc_debug" = "xno" ; then
rohc_extra_debug=0
else
AC_MSG_ERROR([option --enable-rohc-debug does not take an integer value \
anymore, only 'yes' or 'no'])
fi
AC_DEFINE_UNQUOTED([ROHC_EXTRA_DEBUG], [$rohc_extra_debug],
[Extra debug traces for ROHC library])
# check if -Werror must be appended to CFLAGS
AC_ARG_ENABLE(fail_on_warning,
AS_HELP_STRING([--enable-fail-on-warning],
[build fails on warnings if enabled [[default=no]]]),
fail_on_warning=$enableval,
fail_on_warning=no)
if test "x$fail_on_warning" != "xno"; then
configure_cflags="${configure_cflags} -Werror"
fi
# check if -D_FORTIFY_SOURCE=2 must be appended to CFLAGS
AC_ARG_ENABLE(fortify_sources,
AS_HELP_STRING([--enable-fortify-sources],
[build uses -D_FORTIFY_SOURCE=2 if enabled [[default=no]]]),
fortify_sources=$enableval,
fortify_sources=no)
if test "x$fortify_sources" != "xno"; then
configure_cflags="${configure_cflags} -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2"
fi
# check if code coverage must be enabled
AC_ARG_ENABLE(code_coverage,
AS_HELP_STRING([--enable-code-coverage],
[enable code coverage if enabled [[default=no]]]),
code_coverage=$enableval,
code_coverage=no)
if test "x$code_coverage" != "xno"; then
configure_cflags="${configure_cflags} -fprofile-arcs -ftest-coverage"
configure_ldflags="${configure_ldflags} --coverage"
# check for the zcov-scan and zcov-genhtml binaries
# and abort if they are not found
AC_CHECK_PROG(is_lcov_found, lcov, "yes", "no")
AC_CHECK_PROG(is_lcov_genhtml_found, genhtml, "yes", "no")
if test "x$is_lcov_found" != "xyes" || \
test "x$is_lcov_genhtml_found" != "xyes" ; then
echo
if test "x$is_lcov_found" != "xyes" ; then
echo "ERROR: lcov binary not found"
fi
if test "x$is_lcov_genhtml_found" != "xyes" ; then
echo "ERROR: genhtml binary not found"
fi
echo
echo "lcov is required in order to report code coverage."
echo
echo "Either disable the feature with the --disable-code-coverage option, "
echo "or install lcov to solve the problem. You may get Zcov from "
echo "http://ltp.sourceforge.net/coverage/lcov.php or use your package "
echo "manager to install it on your system."
exit 1
fi
fi
AM_CONDITIONAL([CODE_COVERAGE], [test x$code_coverage = xyes])
# allow users to specify a special location for libpcap includes
AC_ARG_WITH(libpcap_includes,
AS_HELP_STRING([--with-libpcap-includes=DIR],
[libpcap include directory]),
[with_libpcap_includes="$withval"],
[with_libpcap_includes="no"])
if test "x$with_libpcap_includes" != "xno"; then
libpcap_includes="-I${with_libpcap_includes}"
fi
# allow users to specify a special location for libpcap libraries
AC_ARG_WITH(libpcap_libraries,
AS_HELP_STRING([--with-libpcap-libraries=DIR],
[libpcap library directory]),
[with_libpcap_libraries="$withval"],
[with_libpcap_libraries="no"])
if test "x$with_libpcap_libraries" != "xno"; then
configure_ldflags="${configure_ldflags} -L${with_libpcap_libraries}"
fi
# check if ROHC tests are enabled
AC_ARG_ENABLE(rohc_tests,
AS_HELP_STRING([--enable-rohc-tests],
[enable ROHC tests [[default=no]]]),
enable_rohc_tests=$enableval,
enable_rohc_tests=no)
AM_CONDITIONAL([ROHC_TESTS], [test x$enable_rohc_tests = xyes])
tests_environment=""
# check if valgrind support in tests is enabled
AC_ARG_ENABLE(rohc_tests_valgrind,
AS_HELP_STRING([--enable-rohc-tests-valgrind],
[enable valgrind support within tests [[default=no]]]),
enable_rohc_tests_valgrind=$enableval,
enable_rohc_tests_valgrind=no)
AM_CONDITIONAL([ROHC_TESTS_VALGRIND], [test x$enable_rohc_tests_valgrind = xyes])
# check if ROHC performance tool (located in the app/performance/ subdir)
# is enabled
AC_ARG_ENABLE(app_performance,
AS_HELP_STRING([--enable-app-performance],
[enable ROHC performance tool [default=no]]),
enable_app_perf=$enableval,
enable_app_perf=no)
AM_CONDITIONAL([APP_PERF], [test x$enable_app_perf = xyes])
# check if ROHC sniffer tool (located in the app/sniffer/ subdir)
# is enabled
AC_ARG_ENABLE(app_sniffer,
AS_HELP_STRING([--enable-app-sniffer],
[enable ROHC sniffer tool [default=no]]),
enable_app_sniffer=$enableval,
enable_app_sniffer=no)
AM_CONDITIONAL([APP_SNIFFER], [test x$enable_app_sniffer = xyes])
# check if ROHC stats tool (located in the app/stats/ subdir)
# is enabled
AC_ARG_ENABLE(app_stats,
AS_HELP_STRING([--enable-app-stats],
[enable ROHC stats [default=no]]),
enable_app_stats=$enableval,
enable_app_stats=no)
AM_CONDITIONAL([APP_STATS], [test x$enable_app_stats = xyes])
# if ROHC tests are enabled:
# - build but do not run tests if cross-compiling except if an emulator
# is available
# - sed is mandatory
if test "x$enable_rohc_tests" = "xyes" ; then
# cross-compiling is not fully compatible with tests yet
if test "x$cross_compiling" = "xyes" ; then
# some cross-compiled binaries may be run:
# - mingw cross-compilation may run the tests if wine is installed,
# - ARM cross-compilation may run the tests if qemu-arm is installed
# and static libraries only are used,
# - PPC cross-compilation may run the tests if qemu-ppc is installed
# and static libraries only are used.
cross_compiling_emulator_name=""
cross_compiling_emulator_cmd=""
if test "x$host_os" = "xmingw32" || \
test "x$host_os" = "xmingw64" ; then
AC_CHECK_PROG(is_wine_found, wine, "yes", "no")
if test "x$is_wine_found" = "xyes"; then
cross_compiling_emulator_name="wine"
cross_compiling_emulator_cmd="wine"
fi
elif test "x$host_cpu" = "xarm" && \
test "x$enable_shared" != "xyes" && \
test "x$enable_static" = "xyes" ; then
AC_CHECK_PROG(is_qemu_found, qemu-arm, "yes", "no")
if test "x$is_qemu_found" = "xyes"; then
cross_compiling_libgcc_file="`${CC} -print-libgcc-file-name`"
cross_compiling_libgcc_dir="`dirname "${cross_compiling_libgcc_file}"`"
cross_compiling_sysroot="`${CC} -print-sysroot`"
cross_compiling_emulator_name="qemu-arm"
cross_compiling_emulator_cmd="qemu-arm -B 1048576 \
${cross_compiling_sysroot}/lib/ld-linux.so.3 \
--library-path ${cross_compiling_sysroot}/lib:${cross_compiling_sysroot}/usr/lib:${cross_compiling_libgcc_dir}"
fi
elif test "x$host_cpu" = "xpowerpc" && \
test "x$enable_shared" != "xyes" && \
test "x$enable_static" = "xyes" ; then
AC_CHECK_PROG(is_qemu_found, qemu-ppc, "yes", "no")
if test "x$is_qemu_found" = "xyes"; then
cross_compiling_libgcc_file="`${CC} -print-libgcc-file-name`"
cross_compiling_libgcc_dir="`dirname "${cross_compiling_libgcc_file}"`"
cross_compiling_sysroot="`${CC} -print-sysroot`"
cross_compiling_emulator_name="qemu-ppc"
cross_compiling_emulator_cmd="qemu-ppc \
${cross_compiling_sysroot}/lib/ld.so.1 \
--library-path ${cross_compiling_sysroot}/lib:${cross_compiling_sysroot}/usr/lib:${cross_compiling_libgcc_dir}"
fi
fi
if test "x$cross_compiling_emulator_cmd" = "x" ; then
echo
echo "WARNING: --enable-rohc-tests is enabled and you are cross-compiling, "
echo " binaries will be built but none will be run."
echo
else
echo
echo "WARNING: --enable-rohc-tests is enabled and you are cross-compiling, "
echo " binaries will be built and run with the '$cross_compiling_emulator_name' emulator."
echo
fi
tests_environment="${tests_environment} \
DISPLAY= \
CROSS_COMPILATION=yes \
CROSS_COMPILATION_EXEEXT=$EXEEXT \
CROSS_COMPILATION_EMULATOR=\"$cross_compiling_emulator_cmd\""
fi
# check for sed and abort if it is not found
AC_PROG_SED
if test "x$SED" = "x" ; then
echo
echo "ERROR: no sed implementation found"
echo
echo "sed is required in order to run tests."
echo
echo "Please install one of the sed tool."
exit 1
fi
tests_environment="${tests_environment} SED=$SED"
# check for awk and abort if it is not found
AC_PROG_AWK
if test "x$AWK" = "x" ; then
echo
echo "ERROR: no awk implementation found"
echo
echo "awk is required in order to generate compression statistics."
echo
echo "Please install one of the gawk, mawk, nawk, or awk tool."
exit 1
fi
tests_environment="${tests_environment} AWK=$AWK"
fi
# if ROHC tests or apps are enabled: libpcap is mandatory
if test "x$enable_rohc_tests" = "xyes" || \
test "x$enable_app_perf" = "xyes" || \
test "x$enable_app_sniffer" = "xyes" || \
test "x$enable_app_stats" = "xyes" ; then
# use winpcap for mingw and cygwin, libpcap for other platforms
if test "x$host_os" = "xmingw32" || \
test "x$host_os" = "xmingw64" || \
test "x$host_os" = "xcygwin" ; then
pcap_lib_name="wpcap"
pcap_lib_pretty_name="WinPcap"
pcap_lib_url="http://www.winpcap.org/"
else
pcap_lib_name="pcap"
pcap_lib_pretty_name="libpcap"
pcap_lib_url="http://www.tcpdump.org/"
fi
old_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS ${libpcap_includes}"
old_LDFLAGS="$LDFLAGS"
LDFLAGS="${LDFLAGS} -L${with_libpcap_libraries}"
# check for libpcap header presence
AC_CHECK_HEADERS([pcap.h pcap/pcap.h])
if test "x$ac_cv_header_pcap_h" != "xyes" &&
test "x$ac_cv_header_pcap_pcap_h" != "xyes" ; then
IPCAP="no"
else
IPCAP="yes"
fi
# check for libpcap presence
LPCAP="yes"
AC_CHECK_LIB([$pcap_lib_name], pcap_open_offline, [unused=1], LPCAP="no")
AC_CHECK_LIB([$pcap_lib_name], pcap_datalink, [unused=1], LPCAP="no")
AC_CHECK_LIB([$pcap_lib_name], pcap_next, [unused=1], LPCAP="no")
AC_CHECK_LIB([$pcap_lib_name], pcap_close, [unused=1], LPCAP="no")
AC_CHECK_LIB([$pcap_lib_name], pcap_dump_open, [unused=1], LPCAP="no")
AC_CHECK_LIB([$pcap_lib_name], pcap_dump, [unused=1], LPCAP="no")
AC_CHECK_LIB([$pcap_lib_name], pcap_dump_close, [unused=1], LPCAP="no")
# abort if libpcap is not found
if test "x$IPCAP" != "xyes" ||
test "x$LPCAP" != "xyes"; then
echo
echo "ERROR: $pcap_lib_pretty_name library/headers not found"
echo
echo "Go get it from $pcap_lib_url or use the --with-libpcap-* "
echo "options, if you have it installed in unusual place. Also check if "
echo "it depends on another shared library that may be installed in an "
echo "unusual place."
exit 1
fi
AC_SUBST([pcap_lib_name], [$pcap_lib_name])
# check for DLT_LINUX_SLL symbol
AC_MSG_CHECKING([whether DLT_LINUX_SLL is defined by libpcap headers])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#if HAVE_PCAP_PCAP_H == 1
# include <pcap/pcap.h>
#elif HAVE_PCAP_H == 1
# include <pcap.h>
#else
# error "pcap.h header not found"
#endif
int dlt;]],
[[dlt = DLT_LINUX_SLL;]])],
[dlt_linux_sll_defined="yes"],
[dlt_linux_sll_defined="no"])
AC_MSG_RESULT([$dlt_linux_sll_defined])
if test "x$dlt_linux_sll_defined" != "xyes" ; then
AC_DEFINE([DLT_LINUX_SLL], [113],
[Define DLT_LINUX_SLL if not defined by the system])
fi
CFLAGS="${old_CFLAGS}"
LDFLAGS="${old_LDFLAGS}"
fi
# if ROHC tests are enabled: libcmocka is mandatory
if test "x$enable_rohc_tests" = "xyes" ; then
PKG_CHECK_MODULES([CMOCKA], [cmocka >= 0.3.1],
[cmocka_found="yes"], [cmocka_found="no"])
if test "x$cmocka_found" != "xyes" ; then
echo
echo "ERROR: cmocka library/headers not found"
echo
echo "Go get it from http://www.cmocka.org/ or use the CMOCKA_* "
echo "variables, if you have it installed in unusual place. Also check if "
echo "it depends on another shared library that may be installed in an "
echo "unusual place."
exit 1
fi
# check if the _run_tests symbol is provided by cmocka
LIBS_SAVED=$LIBS
AC_SEARCH_LIBS([_run_tests], [cmocka],
[AC_DEFINE([HAVE_CMOCKA_RUN_TESTS], [1],
[Whether _run_tests() is provided by the cmocka library])])
LIBS=$LIBS_SAVED
# check if the _cmocka_run_group_tests symbol is provided by cmocka
LIBS_SAVED=$LIBS
AC_SEARCH_LIBS([_cmocka_run_group_tests], [cmocka],
[AC_DEFINE([HAVE_CMOCKA_RUN_GROUP_TESTS], [1],
[Whether _cmocka_run_group_tests() is provided by the cmocka library])])
LIBS=$LIBS_SAVED
fi
# check requirements for valgrind support to tests
if test "x$enable_rohc_tests_valgrind" = "xyes" ; then
# valgrind support for tests cannot be enabled if tests are not
if test "x$enable_rohc_tests" = "xno" ; then
echo
echo "ERROR: valgrind support for tests enabled but tests are not"
echo
echo "Please add the --enable-rohc-tests or the --enable-rohc-tests-valgrind "
echo "option to configure to solve the problem."
exit 1
fi
# check for grep and abort if it is not found
AC_PROG_GREP
if test "x$GREP" = "x" ; then
echo
echo "ERROR: no grep implementation found"
echo
echo "grep is required in order to run tests within valgrind."
echo
echo "Please install one of the grep, or ggrep tool."
exit 1
fi
tests_environment="${tests_environment} GREP=$GREP"
# check for the xsltproc binary and abort if it is not found
AC_CHECK_PROG(is_xsltproc_found, xsltproc, "yes", "no")
if test "x$is_xsltproc_found" != "xyes" ; then
echo
echo "ERROR: xsltproc binary not found"
echo
echo "xsltproc is required in order to analyze Valgrind memory leak reports "
echo "during tests."
echo
echo "Either disable the feature with the --disable-rohc-tests-valgrind, "
echo "or install xsltproc to solve the problem. xsltproc is often bundled "
echo "with libxslt. You may get xsltproc from http://www.xmlsoft.org/ or "
echo "use your package manager to install it on your system."
exit 1
fi
tests_environment="${tests_environment} USE_VALGRIND=yes"
# check for the valgrind binary and abort if it is not found
AC_CHECK_PROG(is_valgrind_found, valgrind, "yes", "no")
if test "x$is_valgrind_found" != "xyes" ; then
echo
echo "ERROR: valgrind binary not found"
echo
echo "Valgrind is required in order to check for memory leaks during tests."
echo
echo "Either disable the feature with the --disable-rohc-tests-valgrind, "
echo "or install Valgrind to solve the problem. You may get Valgrind from "
echo "http://www.valgrind.org/ or use your package manager to install it on "
echo "your system."
exit 1
fi
# check whether --show-possibly-lost option is supported
AC_MSG_CHECKING([whether valgrind supports option --show-possibly-lost])
valgrind --help | $GREP -q -- '--show-possibly-lost'
if test $? -eq 0 ; then
valgrind_opt_show_possibly_lost=yes
else
valgrind_opt_show_possibly_lost=no
fi
AC_MSG_RESULT([$valgrind_opt_show_possibly_lost])
if test "x$valgrind_opt_show_possibly_lost" == "xyes" ; then
tests_environment="${tests_environment} VALGRIND_OPTS=\"--show-possibly-lost=yes\""
else
tests_environment="${tests_environment} VALGRIND_OPTS=\"\""
fi
fi
# gnuplot, grep, sort, and tr are mandatory if ROHC statistics are enabled
if test "x$enable_app_stats" = "xyes" ; then
# check for the gnuplot binary and warn user if it is not found
AC_CHECK_PROG(is_gnuplot_found, gnuplot, "yes", "no")
if test "x$is_gnuplot_found" != "xyes"; then
echo
echo "WARNING: gnuplot binary not found"
echo
echo "gnuplot is not required to build the ROHC library and tools, but it "
echo "is required to generate compression statistics once library and tools"
echo "are installed. You are advised to install it."
echo
echo "Go get it from http://www.gnuplot.info/ or use your package manager "
echo "to install it on your system."
echo
fi
# check for grep and abort if it is not found
AC_PROG_GREP
if test "x$GREP" = "x" ; then
echo
echo "ERROR: no grep implementation found"
echo
echo "grep is required in order to generate compression statistics."
echo
echo "Please install one of the grep, or ggrep tool."
exit 1
fi
tests_environment="${tests_environment} GREP=$GREP"
# check for the sort binary and abort if it is not found
AC_CHECK_PROG(is_sort_found, sort, "yes", "no")
if test "x$is_sort_found" != "xyes"; then
echo
echo "ERROR: sort binary not found"
echo
echo "sort is required in order to generate compression statistics."
echo
echo "Go get it from http://www.gnu.org/software/coreutils/ or use your "
echo "package manager to install it on your system."
exit 1
fi
# check for the tr binary and abort if it is not found
AC_CHECK_PROG(is_tr_found, tr, "yes", "no")
if test "x$is_tr_found" != "xyes"; then
echo
echo "ERROR: tr binary not found"
echo
echo "tr is required in order to generate compression statistics."
echo
echo "Go get it from http://www.gnu.org/software/coreutils/ or use your "
echo "package manager to install it on your system."
exit 1
fi
fi
# check if Linux kernel module is enabled
AC_ARG_ENABLE(linux_kernel_module,
AS_HELP_STRING([--enable-linux-kernel-module],
[build Linux kernel module [[default=no]]]),
[enable_linux_kmod=$enableval],
[enable_linux_kmod=no])
AM_CONDITIONAL([ROHC_LINUX_MODULE], [test "x$enable_linux_kmod" = "xyes"])
# allow users to specify kernel source directory
AC_ARG_WITH(linux_kernel_src,
AS_HELP_STRING([--with-linux-kernel-src=DIR],
[Linux kernel sources directory]),
[linux_kernel_src="$withval"],
[linux_kernel_src="no"])
AC_MSG_CHECKING([whether the Linux kernel module shall be built])
if test "x$enable_linux_kmod" != "xyes" ; then
AC_MSG_RESULT([no])
else
AC_MSG_RESULT([yes])
# stop now if building for Windows
if test "x$host_os" = "xmingw32" || \
test "x$host_os" = "xmingw64" || \
test "x$host_os" = "xcygwin" ; then
AC_MSG_ERROR([The Linux kernel cannot be built when compiling
for the Windows platform])
fi
# get path for running kernel if none was specified manually
if test "x$linux_kernel_src" = "xno" ; then
AC_MSG_CHECKING([current Linux kernel version])
runver=$( uname -r )
AC_MSG_RESULT([$runver])
linux_kernel_src=/lib/modules/${runver}/build
fi
AC_MSG_CHECKING([Linux kernel source directory])
if test -z "$linux_kernel_src" ; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([Linux kernel source not found. Specify the location of the \
kernel source with the --with-linux-kernel-src=DIR option])
fi
AC_MSG_RESULT([$linux_kernel_src])
AC_MSG_CHECKING([Linux kernel source usability])
if test ! -e "$linux_kernel_src" ; then
kernel_src_ok="no"
elif test -L "$linux_kernel_src" && \
test -z $( readlink "$linux_kernel_src" ) ; then
kernel_src_ok="no"
else
kernel_src_ok="yes"
fi
if test "x$kernel_src_ok" != "xyes" ; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([Linux kernel source cannot be used. Specify the location of the \
kernel source with the --with-linux-kernel-src=DIR option])
fi
AC_MSG_RESULT([yes])
AC_SUBST(linux_kernel_src)
fi
# check if API documentation should be generated (HTML format with doxygen)
AC_ARG_ENABLE(doc,
AS_HELP_STRING([--enable-doc],
[generate API documentation in HTML format [default=no]]),
[build_doc=$enableval],
[build_doc=no])
AM_CONDITIONAL([BUILD_DOC], [test "x$build_doc" = "xyes"])
# check if API documentation should be generated (man format with doxygen
# and a modified version of doxy2man)
AC_ARG_ENABLE(doc-man,
AS_HELP_STRING([--enable-doc-man],
[generate API documentation in man format [default=no]]),
[build_doc_man=$enableval],
[build_doc_man=no])
AM_CONDITIONAL([BUILD_DOC_MAN], [test "x$build_doc_man" = "xyes"])
# doxygen and dot are mandatory if API documentation generation is enabled
if test "x$build_doc" = "xyes" ; then
# check for the doxygen binary and abort if it is not found
AC_CHECK_PROG(is_doxygen_found, doxygen, "yes", "no")
if test "x$is_doxygen_found" != "xyes"; then
echo
echo "ERROR: doxygen binary not found"
echo
echo "doxygen is required in order to generate the library documentation."
echo
echo "Go get it from http://www.doxygen.org/ or use your package manager "
echo "to install it on your system."
exit 1
fi
# check for the dot binary and abort if it is not found
AC_CHECK_PROG(is_dot_found, dot, "yes", "no")
if test "x$is_dot_found" != "xyes"; then
echo
echo "ERROR: dot binary not found"
echo
echo "dot is required by doxygen in order to generate the library documentation."
echo
echo "dot is part of Graphviz, a set of tools for creating graphs."
echo
echo "Go get it from http://graphviz.org/ or use your package manager "
echo "to install it on your system."
exit 1
fi
fi
# if man pages need to be generated, same requirement as HTML pages in addition
# to doxy2man
if test "x$build_doc_man" = "xyes" ; then
if test "x$build_doc" != "xyes" ; then
echo
echo "ERROR: --enable-doc-man requires --enable-doc"
echo
echo "Add --enable-doc to your configure options or remove --enable-doc-man "
echo "from your configure options."
exit 1
fi
# check for the doxy2man binary and abort if it is not found
AC_CHECK_PROG(is_doxy2man_found, doxy2man, "yes", "no")
if test "x$is_doxy2man_found" != "xyes"; then
echo
echo "INFO: doxy2man binary not found"
echo
echo "doxy2man is required in order to generate the man pages for the"
echo "library documentation. The tool was not found on the system, so"
echo "pre-generated man pages will be installed instead."
echo
# don't fail, just warn user
fi
# check for the help2man binary and abort if it is not found
AC_CHECK_PROG(is_help2man_found, help2man, "yes", "no")
if test "x$is_help2man_found" != "xyes"; then
echo
echo "INFO: help2man binary not found"
echo
echo "help2man is required in order to generate the man pages for the "
echo "documentation of library's tools. The tool was not found on the "
echo "system, so pre-generated man pages will be installed instead."
echo
# don't fail, just warn user
fi
fi
# check if library examples should be generated
AC_ARG_ENABLE(examples,
AS_HELP_STRING([--disable-examples],
[build example programs [default=no]]),
[build_examples=$enableval],
[build_examples=no])
AM_CONDITIONAL([BUILD_EXAMPLES], [test "x$build_examples" = "xyes"])
# export TESTS_ENVIRONMENT, configure_cflags, and configure_ldflags
AC_SUBST([TESTS_ENVIRONMENT], [$tests_environment])
AC_SUBST([libpcap_includes], [$libpcap_includes])
AC_SUBST([configure_cflags], [$configure_cflags])
AC_SUBST([configure_cflags_for_lib], [$configure_cflags_for_lib])
AC_SUBST([configure_ldflags], [$configure_ldflags])
AM_DEP_TRACK
AC_CONFIG_FILES([ \
Makefile \
git_ref \
src/Makefile \
src/test/Makefile \
src/common/Makefile \
src/common/protocols/Makefile \
src/common/test/Makefile \
src/comp/Makefile \
src/comp/test/Makefile \
src/comp/schemes/Makefile \
src/comp/schemes/test/Makefile \
src/decomp/Makefile \
src/decomp/test/Makefile \
src/decomp/schemes/Makefile \
src/decomp/schemes/test/Makefile \
test/Makefile \
test/functional/Makefile \
test/functional/feedback2/Makefile \
test/functional/decompress_padding/Makefile \
test/functional/decompress_feedback_only/Makefile \
test/functional/context_reuse/Makefile \
test/functional/packet_types/Makefile \
test/functional/rtp_detection/Makefile \
test/functional/segment/Makefile \
test/robustness/Makefile \
test/robustness/empty_payload/Makefile \
test/robustness/damaged_packet/Makefile \
test/robustness/lost_packet/Makefile \
test/robustness/reordered_packet/Makefile \
test/robustness/piggybacking_feedback/Makefile \
test/robustness/malformed_rohc_packets/Makefile \
test/non_regression/Makefile \
test/non_regression/rfc3095/Makefile \
test/non_regression/rfc6846/Makefile \
test/non_regression/rfc5225/Makefile \
test/interop/Makefile \
examples/Makefile \
linux/Makefile \