diff options
author | Karoly Kasza <kaszak@gmail.com> | 2014-09-02 18:13:36 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-09-13 23:50:13 +0200 |
commit | 4288da4bb0f678829e7d24392831f086e5f22582 (patch) | |
tree | f8a88404bf194421df213ae4fa8cf4f2f4df3794 /package/openvmtools/openvmtools-01-has_bsd_printf.patch | |
parent | 1c102abb56a5396c9822bb630b6d1a31f0751548 (diff) | |
download | buildroot-4288da4bb0f678829e7d24392831f086e5f22582.tar.gz buildroot-4288da4bb0f678829e7d24392831f086e5f22582.zip |
openvmtools: new package
New package: openvmtools
[Peter: add patch to fix compilation against modern glib versions]
Signed-off-by: Karoly Kasza <kaszak@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/openvmtools/openvmtools-01-has_bsd_printf.patch')
-rw-r--r-- | package/openvmtools/openvmtools-01-has_bsd_printf.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/openvmtools/openvmtools-01-has_bsd_printf.patch b/package/openvmtools/openvmtools-01-has_bsd_printf.patch new file mode 100644 index 0000000000..889f7d1d28 --- /dev/null +++ b/package/openvmtools/openvmtools-01-has_bsd_printf.patch @@ -0,0 +1,26 @@ +lib/misc/msgList.c: missing #ifdef + +This macro checks for BSD style printf(), which is not present +when compiling for uClibc. The linked functions are unnecessary in +this case, and they break compilation. + +Signed-off-by: Karoly Kasza <kaszak@gmail.com> + +--- open-vm-tools-9.4.6-1770165.orig/lib/misc/msgList.c 2014-07-02 00:21:14.000000000 +0200 ++++ open-vm-tools-9.4.6-1770165/lib/misc/msgList.c 2014-07-29 13:40:40.000000000 +0200 +@@ -487,6 +487,7 @@ + return messages->id; + } + ++#ifdef HAS_BSD_PRINTF + + /* + *---------------------------------------------------------------------- +@@ -566,6 +567,7 @@ + } + } + ++#endif + + /* + *---------------------------------------------------------------------- |