aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
blob: 501a3868352430d6b2a1b776e05a12d655afc6ab (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
AC_INIT([libsamsung-ipc], [0.7.0], [replicant@osuosl.org], [libsamsung-ipc])

AC_SUBST(CONFIGURE_ARGUMENTS)
: ${CONFIGURE_ARGUMENTS="$@"}

AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE([dist-bzip2 dist-xz subdir-objects])
XZ_OPT=-v9e
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

OPENSSL_REQUIRED=1.0.0e
LIBCURL_REQUIRED=7.62.0

#------------------------------------------------------------------------------
# pkg-config

PKG_PROG_PKG_CONFIG

#------------------------------------------------------------------------------
# openssl

PKG_CHECK_MODULES(OPENSSL, openssl >= $OPENSSL_REQUIRED)
AC_SUBST(OPENSSL_CFLAGS)
AC_SUBST(OPENSSL_LIBS)

#------------------------------------------------------------------------------
# strict cflags
AC_SUBST(STRICT_CFLAGS)

#------------------------------------------------------------------------------
# Static build of test utilities
AC_SUBST(ALL_STATIC_LDFLAGS)

#------------------------------------------------------------------------------
# python
AC_SUBST(PYTHON3)
AC_CHECK_PROG([PYTHON3], [python3], [python3])
#------------------------------------------------------------------------------
# code coverage
AC_SUBST(CODE_COVERAGE)
#------------------------------------------------------------------------------
# valgrind
AC_SUBST(VALGRIND)

#------------------------------------------------------------------------------
# ipc device name
AC_SUBST([IPC_DEVICE_NAME], [all])

#------------------------------------------------------------------------------
# libcurl
PKG_CHECK_MODULES(LIBCURL, libcurl >= $LIBCURL_REQUIRED)
AC_SUBST(LIBCURL_CFLAGS)
AC_SUBST(LIBCURL_LIBS)

#------------------------------------------------------------------------------
# check for debugging
AC_ARG_ENABLE(debug,
  [AS_HELP_STRING([--enable-debug], [Enable debug build (default=disabled)])],
  [debug=$enableval],
  [debug="no"])
AM_CONDITIONAL( [WANT_DEBUG], [test x"$debug" = x"yes"])

#------------------------------------------------------------------------------

AC_ARG_ENABLE(static-progs,
  [AS_HELP_STRING([--enable-static-progs],
                  [Build static (test) tools (default=disabled)])],
  [static_progs=$enableval],
  [static_progs="no"])

#------------------------------------------------------------------------------
AC_ARG_ENABLE(strict-cflags,
  [AS_HELP_STRING([--enable-strict-cflags],
                  [Build with strict cflags (default=disabled)])],
  [strict_cflags=$enableval],
  [strict_cflags="no"])
AM_CONDITIONAL( [WANT_STRICT_CFLAGS], [test x"$strict_cflags" = x"yes"])

#------------------------------------------------------------------------------
# TODO: GCC has --enable-checking= for extensive runtime checks and one of the
#       available values is valgrind, so it would be a good idea to convert to
#       it for consistency across free software projects.
AC_ARG_ENABLE(
  [code-coverage-tests],
  [AS_HELP_STRING([--enable-code-coverage-tests],
                  [Build with --coverage, -O0 and use lcov from PATH during
                   tests (default=disabled)])],
  [code_coverage_tests=$enableval],
  [code_coverage="no"])

AM_CONDITIONAL( [WANT_CODE_COVERAGE], [test x"$code_coverage_tests" = x"yes"])

AS_IF([test x"$code_coverage_tests" = x"yes"],
  [AC_CHECK_PROG([CODE_COVERAGE], [lcov], [lcov])
   AS_IF(
     [test x"$CODE_COVERAGE" = x""],
     [AC_MSG_ERROR(
       [code coverage tests are enabled but lcov was not found in PATH ($PATH)])])])

#------------------------------------------------------------------------------
# TODO: GCC has --enable-checking= for extensive runtime checks and one of the
#       available values is valgrind, so it would be a good idea to convert to
#       it for consistency across free software projects.
AC_ARG_ENABLE(
  [valgrind-tests],
  [AS_HELP_STRING([--enable-valgrind-tests],
                  [Build with -ggdb3, -O0 and use valgrind from PATH during
                   tests (default=disabled)])],
  [valgrind_tests=$enableval],
  [valgrind_tests="no"])

AM_CONDITIONAL( [WANT_VALGRIND_CHECKING], [test x"$valgrind_tests" = x"yes"])

AS_IF([test x"$valgrind_tests" = x"yes"],
  [AC_CHECK_PROG([VALGRIND], [valgrind], [valgrind])
   AS_IF(
     [test x"$VALGRIND" = x""],
     [AC_MSG_ERROR(
       [valgrind tests are enabled but valgrind was not found in PATH ($PATH)])])])
#------------------------------------------------------------------------------
AC_ARG_ENABLE(samsung-ipc-device,
  [  --enable-samsung-ipc-device=[DEVICE]
                          make libsamsung-ipc assumes that it runs on DEVICE
                          DEVICE={all,aries,crespo,galaxys2,herolte,i9300,maguro,n5100,n7100,piranha} (default=all)],
  [AS_CASE([$enableval],
            [aries|crespo|galaxys2|herolte|i9300|maguro|n5100|n7100|piranha],
            [IPC_DEVICE_NAME=$enableval],
            [AC_MSG_ERROR([Unknown device $enableval])])],
  [IPC_DEVICE_NAME="all"])

AM_CONDITIONAL( [WANT_IPC_DEVICE_NAME], [test x"$IPC_DEVICE_NAME" != x"all"])
#------------------------------------------------------------------------------

AC_CONFIG_FILES([
    Makefile
    samsung-ipc.pc
    include/Makefile
    samsung-ipc/Makefile
    samsung-ipc/tests/Makefile
    tools/Makefile
    tools/ipc-modem/Makefile
])


#------------------------------------------------------------------------------
AS_IF([test x"$static_progs" = x"yes"],
      [ALL_STATIC_LDFLAGS=-all-static], [])

AS_IF([test x"$strict_cflags" = x"yes"],
      [STRICT_CFLAGS=`$srcdir/strict-cflags.sh`], [])

AS_IF([test x"$valgrind_tests" = x"yes"], [: ${CFLAGS="-ggdb3 -O0"}],
      [test x"$debug" = x"yes"], [: ${CFLAGS="-ggdb -O0"}], [])

AS_IF([test x"$code_coverage_tests" = x"yes"],
      [: ${LDFLAGS=" --coverage"}], [])

AS_IF([test x"$code_coverage_tests" = x"yes"],
      [ CFLAGS+=" --coverage"], [])

AC_PROG_CC
AM_PROG_CC_C_O
AC_GNU_SOURCE
AC_DISABLE_STATIC
AC_PROG_LIBTOOL

AC_SUBST(CFLAGS)
AC_SUBST(CPPFLAGS)
AC_SUBST(LDFLAGS)
AC_SUBST(ALL_STATIC_LDFLAGS)

AC_OUTPUT
#------------------------------------------------------------------------------
# info

echo "------------------------------------------------------------------------"
echo "$PACKAGE_NAME $PACKAGE_VERSION"
echo "------------------------------------------------------------------------"
echo
echo "Compiler flags:"
echo
echo "  CFLAGS..................: $CFLAGS $STRICT_CFLAGS"
echo "  LDFLAGS.................: $LDFLAGS $ALL_STATIC_LDFLAGS"
echo
echo
echo "Interpreters paths:"
echo
echo "  PYTHON3..................: $PYTHON3"
echo
echo
echo "Configuration Options:"
echo
echo "  debug build.............: $debug"
echo
echo "  device(s)...............: $IPC_DEVICE_NAME"
echo
echo "  prefix..................: $prefix"
echo
echo "  valgrind tests..........: $valgrind_tests"
echo
echo "  code coverage tests.....: $code_coverage_tests"
echo "------------------------------------------------------------------------"
echo
echo "Now type 'make' to compile and 'make install' to install this package."