Lines Matching +full:test +full:- +full:cython
4 [linux-modules@vger.kernel.org],
11 AC_CONFIG_AUX_DIR([build-aux])
17 AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects …
19 LT_INIT([disable-static pic-only])
21 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by kmod])])
22 AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by k…
64 [AC_LANG_SOURCE([[_Static_assert(1, "Test");]])],
78 # --with-
82 AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]),
87 AS_HELP_STRING([--with-zstd], [handle Zstandard-compressed modules @<:@default=disabled@:>@]),
89 AS_IF([test "x$with_zstd" != "xno"], [
98 AS_HELP_STRING([--with-xz], [handle Xz-compressed modules @<:@default=disabled@:>@]),
100 AS_IF([test "x$with_xz" != "xno"], [
109 AS_HELP_STRING([--with-zlib], [handle gzipped modules @<:@default=disabled@:>@]),
111 AS_IF([test "x$with_zlib" != "xno"], [
120 AS_HELP_STRING([--with-openssl], [handle PKCS7 signatures @<:@default=disabled@:>@]),
122 AS_IF([test "x$with_openssl" != "xno"], [
131 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
133 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
134 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
136 with_bashcompletiondir=${datadir}/bash-completion/completions
141 # --enable-
145 …AS_HELP_STRING([--enable-experimental], [enable experimental tools and features. Do not enable it …
147 AM_CONDITIONAL([BUILD_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"])
148 AS_IF([test "x$enable_experimental" = "xyes"], [
154 …AS_HELP_STRING([--disable-tools], [disable building tools that provide same functionality as modul…
156 AM_CONDITIONAL([BUILD_TOOLS], [test "x$enable_tools" = "xyes"])
159 AS_HELP_STRING([--disable-manpages], [disable manpages @<:@default=enabled@:>@]),
161 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$enable_manpages" = "xyes"])
163 AC_ARG_ENABLE([test-modules],
164 …AS_HELP_STRING([--disable-test-modules], [disable building test modules during make check: cached …
166 AM_CONDITIONAL([BUILD_MODULES], [test "x$enable_test_modules" = "xyes"])
169 AS_HELP_STRING([--disable-logging], [disable system logging @<:@default=enabled@:>@]),
171 AS_IF([test "x$enable_logging" = "xyes"], [
176 AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
178 AS_IF([test "x$enable_debug" = "xyes"], [
183 AS_HELP_STRING([--enable-python], [enable Python libkmod bindings @<:@default=disabled@:>@]),
185 AS_IF([test "x$enable_python" = "xyes"], [
187 AC_PATH_PROG([CYTHON], [cython], [:])
189 PKG_CHECK_MODULES([PYTHON], [python-${PYTHON_VERSION}],
195 AS_IF([test "x$have_python" = xno],
198 AM_CONDITIONAL([BUILD_PYTHON], [test "x$enable_python" = "xyes"])
201 AS_HELP_STRING([--enable-coverage], [enable test coverage @<:@default=disabled@:>@]),
203 AS_IF([test "x$enable_coverage" = "xyes"], [
205 AS_IF([test "x$have_coverage" = xno],[
208 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
209 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
210 AS_IF([test "$lcov_version_major" -lt 1 -o "$lcov_version_minor" -lt 10], [
215 -fprofile-arcs \
216 -ftest-coverage])
220 AM_CONDITIONAL([ENABLE_COVERAGE], [test "x$enable_coverage" = "xyes"])
223 GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat])
233 -pipe \
234 -DANOTHER_BRICK_IN_THE \
235 -Wall \
236 -W \
237 -Wextra \
238 -Wno-inline \
239 -Wvla \
240 -Wundef \
241 -Wformat=2 \
242 -Wlogical-op \
243 -Wsign-compare \
244 -Wformat-security \
245 -Wmissing-include-dirs \
246 -Wformat-nonliteral \
247 -Wold-style-definition \
248 -Wpointer-arith \
249 -Winit-self \
250 -Wdeclaration-after-statement \
251 -Wfloat-equal \
252 -Wmissing-prototypes \
253 -Wstrict-prototypes \
254 -Wredundant-decls \
255 -Wmissing-declarations \
256 -Wmissing-noreturn \
257 -Wshadow \
258 -Wendif-labels \
259 -Wstrict-aliasing=3 \
260 -Wwrite-strings \
261 -Wno-long-long \
262 -Wno-overlength-strings \
263 -Wno-unused-parameter \
264 -Wno-missing-field-initializers \
265 -Wno-unused-result \
266 -Wnested-externs \
267 -Wchar-subscripts \
268 -Wtype-limits \
269 -Wuninitialized \
270 -fno-common \
271 -fdiagnostics-show-option \
272 -fvisibility=hidden \
273 -ffunction-sections \
274 -fdata-sections])
279 -Wl,--as-needed \
280 -Wl,--no-undefined \
281 -Wl,--gc-sections])
326 test-modules: ${enable_test_modules}