5f0f0f7e4f
Fixes build against glibc 2.28: closes #11546
http://autobuild.buildroot.net/results/f2c/f2c73480b5a1060bb17ac260ef82c3e641fad085/
http://autobuild.buildroot.net/results/e21/e219b8bacb52bb661eb6663b82f549ed941f26fe/
Use released tarball rather than github helper. The tarball does not
contain the open-vm-tools sub directory, so adjust the paths in the patches
to match and drop OPENVMTOOLS_SUBDIR.
Drop 0001-has_bsd_printf.patch: msgList.c has been removed upstream since:
dc81979e78
Drop 0004-uclibc_secure_getenv.sh: uClibc-ng provides secure_getenv() since
1.0.22.
Renumber remaining patches.
Add hash for license file.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
670 B
Diff
22 lines
670 B
Diff
m4: do not force -I/usr/include in CPPFLAGS
|
|
|
|
This is so horribly broken for cross-compilation. :-(
|
|
|
|
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
|
|
|
--- open-vm-tools/m4/vmtools.m4 2015-06-17 10:03:00.000000000 +0200
|
|
+++ open-vm-tools/m4/vmtools.m4 2015-06-17 10:03:00.000000000 +0200
|
|
@@ -281,10 +281,10 @@
|
|
if test "$os" = freebsd; then
|
|
CUSTOM_$1_CPPFLAGS="-I/usr/local/include"
|
|
else
|
|
- CUSTOM_$1_CPPFLAGS="-I/usr/include"
|
|
+ CUSTOM_$1_CPPFLAGS=" "
|
|
fi
|
|
if test -n "$2"; then
|
|
- CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
|
|
+ : CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
|
|
fi
|
|
fi
|
|
])
|