• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching +full:- +full:wdeclaration +full:- +full:after +full:- +full:statement

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])
22 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by kmod])])
23 AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by k…
79 # --with-
83 AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]),
88 AS_HELP_STRING([--with-xz], [handle Xz-compressed modules @<:@default=disabled@:>@]),
99 AS_HELP_STRING([--with-zlib], [handle gzipped modules @<:@default=disabled@:>@]),
110 AS_HELP_STRING([--with-openssl], [handle PKCS7 signatures @<:@default=disabled@:>@]),
121 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
123 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
124 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
126 with_bashcompletiondir=${datadir}/bash-completion/completions
131 # --enable-
135 …AS_HELP_STRING([--enable-experimental], [enable experimental tools and features. Do not enable it …
144 …AS_HELP_STRING([--disable-tools], [disable building tools that provide same functionality as modul…
149 AS_HELP_STRING([--disable-manpages], [disable manpages @<:@default=enabled@:>@]),
153 AC_ARG_ENABLE([test-modules],
154 …AS_HELP_STRING([--disable-test-modules], [disable building test modules during make check: cached …
159 AS_HELP_STRING([--disable-logging], [disable system logging @<:@default=enabled@:>@]),
166 AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
173 AS_HELP_STRING([--enable-python], [enable Python libkmod bindings @<:@default=disabled@:>@]),
179 PKG_CHECK_MODULES([PYTHON], [python-${PYTHON_VERSION}],
191 AS_HELP_STRING([--enable-coverage], [enable test coverage @<:@default=disabled@:>@]),
198 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
199 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
200 AS_IF([test "$lcov_version_major" -lt 1 -o "$lcov_version_minor" -lt 10], [
205 -fprofile-arcs \
206 -ftest-coverage])
213 GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat])
223 -pipe \
224 -DANOTHER_BRICK_IN_THE \
225 -Wall \
226 -W \
227 -Wextra \
228 -Wno-inline \
229 -Wvla \
230 -Wundef \
231 -Wformat=2 \
232 -Wlogical-op \
233 -Wsign-compare \
234 -Wformat-security \
235 -Wmissing-include-dirs \
236 -Wformat-nonliteral \
237 -Wold-style-definition \
238 -Wpointer-arith \
239 -Winit-self \
240 -Wdeclaration-after-statement \
241 -Wfloat-equal \
242 -Wmissing-prototypes \
243 -Wstrict-prototypes \
244 -Wredundant-decls \
245 -Wmissing-declarations \
246 -Wmissing-noreturn \
247 -Wshadow \
248 -Wendif-labels \
249 -Wstrict-aliasing=3 \
250 -Wwrite-strings \
251 -Wno-long-long \
252 -Wno-overlength-strings \
253 -Wno-unused-parameter \
254 -Wno-missing-field-initializers \
255 -Wno-unused-result \
256 -Wnested-externs \
257 -Wchar-subscripts \
258 -Wtype-limits \
259 -Wuninitialized \
260 -fno-common \
261 -fdiagnostics-show-option \
262 -fvisibility=hidden \
263 -ffunction-sections \
264 -fdata-sections])
269 -Wl,--as-needed \
270 -Wl,--no-undefined \
271 -Wl,--gc-sections])
316 test-modules: ${enable_test_modules}