diff options
author | Alexey Neyman <stilor@att.net> | 2017-04-22 12:28:50 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-04-22 12:28:50 -0700 |
commit | 2c0fb226419507583a736818346a7d6f07eba983 (patch) | |
tree | 8f9336eaa325a91a5219abb7420e4a00cd0ce80d /config/configure.in.in | |
parent | 6f5afbdf82698ab0f91d5a36e7f171dd2829ec10 (diff) | |
download | crosstool-ng-2c0fb226419507583a736818346a7d6f07eba983.tar.gz crosstool-ng-2c0fb226419507583a736818346a7d6f07eba983.tar.bz2 crosstool-ng-2c0fb226419507583a736818346a7d6f07eba983.zip |
Generate config/configure.in directly
from configure rather than substitute it from Makefile. Eventually we
might want to get rid of configure.in completely, doing on-the-fly
checks at the time of `ct-ng build`, but that is left for another day.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/configure.in.in')
-rw-r--r-- | config/configure.in.in | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/config/configure.in.in b/config/configure.in.in new file mode 100644 index 00000000..aaebbded --- /dev/null +++ b/config/configure.in.in @@ -0,0 +1,46 @@ +# Default values as found by ./configure + +config CONFIGURE_has_static_link + @KCONFIG_static_link@ + +config CONFIGURE_has_wget + @KCONFIG_wget@ + +config CONFIGURE_has_curl + @KCONFIG_curl@ + +config CONFIGURE_has_stat_flavor_BSD + @KCONFIG_stat_flavor_BSD@ + +config CONFIGURE_has_stat_flavor_GNU + @KCONFIG_stat_flavor_GNU@ + +config CONFIGURE_has_make_3_81_or_newer + @KCONFIG_make_3_81_or_newer@ + +config CONFIGURE_has_libtool_2_4_or_newer + @KCONFIG_libtool_2_4_or_newer@ + +config CONFIGURE_has_libtoolize_2_4_or_newer + @KCONFIG_libtoolize_2_4_or_newer@ + +config CONFIGURE_has_autoconf_2_63_or_newer + @KCONFIG_autoconf_2_63_or_newer@ + +config CONFIGURE_has_autoreconf_2_63_or_newer + @KCONFIG_autoreconf_2_63_or_newer@ + +config CONFIGURE_has_automake_1_15_or_newer + @KCONFIG_automake_1_15_or_newer@ + +config CONFIGURE_has_gnu_m4_1_4_12_or_newer + @KCONFIG_gnu_m4_1_4_12_or_newer@ + +config CONFIGURE_has_cvs + @KCONFIG_cvs@ + +config CONFIGURE_has_svn + @KCONFIG_svn@ + +config CONFIGURE_has_git + @KCONFIG_git@ |