diff options
author | Daniel Golle <daniel@makrotopia.org> | 2021-03-02 11:34:24 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2021-03-02 11:36:36 +0000 |
commit | a8a37d4ea5993894ff8b22e1445a6967c563f1cd (patch) | |
tree | e992ae1ad48e84cfb8baf275a5fc9c6f9c84d35b /toolchain/autoconf-lean/patches/120-add-extra-checks.patch | |
parent | 1b6209203d4e403b4c6b124d1222d0a4ad69d37f (diff) | |
download | upstream-a8a37d4ea5993894ff8b22e1445a6967c563f1cd.tar.gz upstream-a8a37d4ea5993894ff8b22e1445a6967c563f1cd.tar.bz2 upstream-a8a37d4ea5993894ff8b22e1445a6967c563f1cd.zip |
Revert "toolchain: add autoconf-lean"
autoconf-lean was not ready yet. Revert it until things get sorted.
This reverts commit 32c664ff02910bf39a3fbd5a5a4a8bff3191dd03.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'toolchain/autoconf-lean/patches/120-add-extra-checks.patch')
-rw-r--r-- | toolchain/autoconf-lean/patches/120-add-extra-checks.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/toolchain/autoconf-lean/patches/120-add-extra-checks.patch b/toolchain/autoconf-lean/patches/120-add-extra-checks.patch deleted file mode 100644 index 7e81525daf..0000000000 --- a/toolchain/autoconf-lean/patches/120-add-extra-checks.patch +++ /dev/null @@ -1,48 +0,0 @@ ---- a/config-site-generator/configure.ac -+++ b/config-site-generator/configure.ac -@@ -23,6 +23,7 @@ AC_DEFUN([AC_MSG_ERROR], [ - test -e conftest.dir && rm -rf conftest.dir ]) - - # Checks for programs. -+AC_PROG_CC - AC_PROG_CC_C89 - AC_PROG_CC_C_O - AC_PROG_CPP -@@ -52,9 +53,11 @@ AC_PROG_LEX - AC_PROG_LN_S - AC_PROG_RANLIB - AC_PROG_SED -+AC_PROG_LEX - #AC_PROG_YACC - - AM_PROG_AS -+AM_PROG_AR - - # Checks for system services. - #AC_PATH_X -@@ -118,6 +121,8 @@ sys/ucontext.h sys/uio.h sys/un.h sys/us - sys/wait.h sys/xattr.h tar.h termios.h tgmath.h time.h ucontext.h ulimit.h \ - unistd.h utime.h utmp.h utmpx.h wchar.h wctype.h wordexp.h - ]) -+# extra headers -+AC_CHECK_HEADERS([sys/cdefs.h]) - - # Checks for typedefs, structures, and compiler characteristics. - AC_TYPE_GETGROUPS -@@ -217,6 +222,16 @@ AC_FUNC_STRTOLD - AC_FUNC_UTIME_NULL - AC_FUNC_VPRINTF - -+AC_CHECK_SIZEOF(short) -+AC_CHECK_SIZEOF(int) -+AC_CHECK_SIZEOF(long) -+AC_CHECK_SIZEOF(long long) -+AC_CHECK_SIZEOF(unsigned int) -+AC_CHECK_SIZEOF(unsigned long) -+AC_CHECK_SIZEOF(unsigned long long) -+AC_CHECK_SIZEOF(off_t) -+AC_CHECK_SIZEOF(size_t) -+ - # Functions list scraped from musl 0.9.4 x86_64 - AC_CHECK_FUNCS([ \ - a64l abort abs accept access acos acosf acosh acoshf acoshl acosl addmntent \ |