Remove obsolete and useless --enable_no_deps configure option

This option didn't do anything for the last 14 years, ever since the switch to
bakefile-generated makefiles in fe0895cf82, so
remove it from configure and stop mentioning it in documentation.

Use --disable-dependency-tracking to do what this option used to be doing 15
years ago.
This commit is contained in:
Vadim Zeitlin
2017-05-27 13:05:47 +02:00
parent 3414fde5f6
commit 1c4071a3cb
5 changed files with 0 additions and 41 deletions

31
configure vendored
View File

@@ -1130,7 +1130,6 @@ enable_profile
enable_no_rtti enable_no_rtti
enable_no_exceptions enable_no_exceptions
enable_permissive enable_permissive
enable_no_deps
enable_vararg_macros enable_vararg_macros
enable_universal_binary enable_universal_binary
enable_macosx_arch enable_macosx_arch
@@ -2071,7 +2070,6 @@ Optional Features:
--enable-no_rtti create code without RTTI information --enable-no_rtti create code without RTTI information
--enable-no_exceptions create code without C++ exceptions handling --enable-no_exceptions create code without C++ exceptions handling
--enable-permissive compile code disregarding strict ANSI --enable-permissive compile code disregarding strict ANSI
--enable-no_deps create code without dependency information
--disable-vararg_macros don't use vararg macros, even if they are supported --disable-vararg_macros don't use vararg macros, even if they are supported
--enable-universal_binary=archs create universal binary for the specified (or all supported) architectures --enable-universal_binary=archs create universal binary for the specified (or all supported) architectures
--enable-macosx_arch=ARCH build for just the specified architecture --enable-macosx_arch=ARCH build for just the specified architecture
@@ -5755,35 +5753,6 @@ fi
eval "$wx_cv_use_permissive" eval "$wx_cv_use_permissive"
enablestring=
defaultval=
if test -z "$defaultval"; then
if test x"$enablestring" = xdisable; then
defaultval=yes
else
defaultval=no
fi
fi
# Check whether --enable-no_deps was given.
if test "${enable_no_deps+set}" = set; then :
enableval=$enable_no_deps;
if test "$enableval" = yes; then
wx_cv_use_no_deps='wxUSE_NO_DEPS=yes'
else
wx_cv_use_no_deps='wxUSE_NO_DEPS=no'
fi
else
wx_cv_use_no_deps='wxUSE_NO_DEPS=${'DEFAULT_wxUSE_NO_DEPS":-$defaultval}"
fi
eval "$wx_cv_use_no_deps"
enablestring=disable enablestring=disable
defaultval= defaultval=
if test -z "$defaultval"; then if test -z "$defaultval"; then

View File

@@ -654,7 +654,6 @@ WX_ARG_ENABLE(profile, [ --enable-profile create code with profili
WX_ARG_ENABLE(no_rtti, [ --enable-no_rtti create code without RTTI information], wxUSE_NO_RTTI) WX_ARG_ENABLE(no_rtti, [ --enable-no_rtti create code without RTTI information], wxUSE_NO_RTTI)
WX_ARG_ENABLE(no_exceptions, [ --enable-no_exceptions create code without C++ exceptions handling], wxUSE_NO_EXCEPTIONS) WX_ARG_ENABLE(no_exceptions, [ --enable-no_exceptions create code without C++ exceptions handling], wxUSE_NO_EXCEPTIONS)
WX_ARG_ENABLE(permissive, [ --enable-permissive compile code disregarding strict ANSI], wxUSE_PERMISSIVE) WX_ARG_ENABLE(permissive, [ --enable-permissive compile code disregarding strict ANSI], wxUSE_PERMISSIVE)
WX_ARG_ENABLE(no_deps, [ --enable-no_deps create code without dependency information], wxUSE_NO_DEPS)
WX_ARG_DISABLE(vararg_macros,[ --disable-vararg_macros don't use vararg macros, even if they are supported], wxUSE_VARARG_MACROS) WX_ARG_DISABLE(vararg_macros,[ --disable-vararg_macros don't use vararg macros, even if they are supported], wxUSE_VARARG_MACROS)
WX_ARG_ENABLE_PARAM(universal_binary, [[ --enable-universal_binary=archs create universal binary for the specified (or all supported) architectures]], wxUSE_UNIVERSAL_BINARY) WX_ARG_ENABLE_PARAM(universal_binary, [[ --enable-universal_binary=archs create universal binary for the specified (or all supported) architectures]], wxUSE_UNIVERSAL_BINARY)

View File

@@ -231,9 +231,6 @@ The following options handle the kind of library you want to build.
binary size. Also fewer crashes during the binary size. Also fewer crashes during the
actual compilation... actual compilation...
--enable-no_deps Enable compilation without creation of
dependency information.
--enable-permissive Enable compilation without checking for strict --enable-permissive Enable compilation without checking for strict
ANSI conformance. Useful to prevent the build ANSI conformance. Useful to prevent the build
dying with errors as soon as you compile with dying with errors as soon as you compile with

View File

@@ -264,9 +264,6 @@ The following options handle the kind of library you want to build.
binary size. Also fewer crashes during the binary size. Also fewer crashes during the
actual compilation... actual compilation...
--enable-no_deps Enable compilation without creation of
dependency information.
--enable-permissive Enable compilation without checking for strict --enable-permissive Enable compilation without checking for strict
ANSI conformance. Useful to prevent the build ANSI conformance. Useful to prevent the build
dying with errors as soon as you compile with dying with errors as soon as you compile with

View File

@@ -246,9 +246,6 @@ The following options handle the kind of library you want to build.
binary size. Also fewer crashes during the binary size. Also fewer crashes during the
actual compilation... actual compilation...
--enable-no_deps Enable compilation without creation of
dependency information.
--enable-permissive Enable compilation without checking for strict --enable-permissive Enable compilation without checking for strict
ANSI conformance. Useful to prevent the build ANSI conformance. Useful to prevent the build
dying with errors as soon as you compile with dying with errors as soon as you compile with