diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2013-06-05 05:17:56 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-06-05 23:07:56 +0200 |
commit | 96f522ee7bc94b1440c5d53d44d26a491ca8f9ab (patch) | |
tree | 52072d568e9b799387716fed63932db5cc2ecef3 /package/x11r7/xapp_xmodmap/xapp_xmodmap-asprintf.patch | |
parent | 235b676a6670bfedc41a43543e0d34bc4dd85854 (diff) | |
download | buildroot-96f522ee7bc94b1440c5d53d44d26a491ca8f9ab.tar.gz buildroot-96f522ee7bc94b1440c5d53d44d26a491ca8f9ab.zip |
xapp_xmodmap: Fix build problems due to missing asprintf definition
Upstream Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=48696
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/x11r7/xapp_xmodmap/xapp_xmodmap-asprintf.patch')
-rw-r--r-- | package/x11r7/xapp_xmodmap/xapp_xmodmap-asprintf.patch | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/package/x11r7/xapp_xmodmap/xapp_xmodmap-asprintf.patch b/package/x11r7/xapp_xmodmap/xapp_xmodmap-asprintf.patch new file mode 100644 index 0000000000..8eb2b9c452 --- /dev/null +++ b/package/x11r7/xapp_xmodmap/xapp_xmodmap-asprintf.patch @@ -0,0 +1,69 @@ +Fixes build problems due to missing asprintf() definition + +Upstream bug: https://bugs.freedesktop.org/show_bug.cgi?id=48696 + +Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> + +From dab3ce5b4b9d7078cd55515441b2ba244a32516a Mon Sep 17 00:00:00 2001 +From: Alan Coopersmith <alan.coopersmith@oracle.com> +Date: Mon, 23 Apr 2012 07:28:39 -0700 +Subject: [PATCH:xmodmap] include config.h before stdio.h & other system + headers + +Ensures definitions like _GNU_SOURCE are visible when needed. + +Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> +--- + exec.c | 4 ++++ + pf.c | 4 ++++ + xmodmap.c | 4 ++++ + 3 files changed, 12 insertions(+) + +diff --git a/exec.c b/exec.c +index dbcb669..419b10e 100644 +--- a/exec.c ++++ b/exec.c +@@ -54,6 +54,10 @@ from The Open Group. + * original xmodmap, written by David Rosenthal, of Sun Microsystems. + */ + ++#ifdef HAVE_CONFIG_H ++# include "config.h" ++#endif ++ + #include <X11/Xos.h> + #include <X11/Xlib.h> + #include <stdio.h> +diff --git a/pf.c b/pf.c +index 0eb0f55..3f0c3f4 100644 +--- a/pf.c ++++ b/pf.c +@@ -26,6 +26,10 @@ from The Open Group. + + */ + ++#ifdef HAVE_CONFIG_H ++# include "config.h" ++#endif ++ + #include <X11/Xos.h> + #include <X11/Xlib.h> + #include <stdio.h> +diff --git a/xmodmap.c b/xmodmap.c +index 58a8e70..0f89629 100644 +--- a/xmodmap.c ++++ b/xmodmap.c +@@ -26,6 +26,10 @@ from The Open Group. + + */ + ++#ifdef HAVE_CONFIG_H ++# include "config.h" ++#endif ++ + #include <X11/Xos.h> + #include <X11/Xlib.h> + #include <stdio.h> +-- +1.7.9.2 + |