From 46831ea58a41e042cb2cd6005fd8269f4ef0d047 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 23 Feb 2014 23:58:05 +0100 Subject: [PATCH] cairo: fix build on Blackfin in test/cairo-test-runner.c Add a patch for Cairo that ensures is properly included to get the prototype of readlink and getppid even on non-MMU platforms. Fixes: http://autobuild.buildroot.net/results/93a97f90345d193b52035b2dc7559a306e11098e/ Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- .../cairo/cairo-003-fix-nofork-build.patch | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 package/cairo/cairo-003-fix-nofork-build.patch diff --git a/package/cairo/cairo-003-fix-nofork-build.patch b/package/cairo/cairo-003-fix-nofork-build.patch new file mode 100644 index 0000000000..702e9910a5 --- /dev/null +++ b/package/cairo/cairo-003-fix-nofork-build.patch @@ -0,0 +1,29 @@ +test: fix build when SHOULD_FORK is false + +The code in test/cairo-test-runner.c properly takes into account +platforms that do have fork() support, and uses the SHOULD_FORK define +to know whether fork is available or not. + +However, this SHOULD_FORK macro is used to guard the inclusion of +, which is needed to get the prototype of other functions +(namely readlink and getppid), that are used in portions of this file +not guarded by SHOULD_FORK. + +Signed-off-by: Thomas Petazzoni + +Index: b/test/cairo-test-runner.c +=================================================================== +--- a/test/cairo-test-runner.c ++++ b/test/cairo-test-runner.c +@@ -36,10 +36,10 @@ + #include /* for version information */ + + #define SHOULD_FORK HAVE_FORK && HAVE_WAITPID +-#if SHOULD_FORK + #if HAVE_UNISTD_H + #include + #endif ++#if SHOULD_FORK + #if HAVE_SIGNAL_H + #include + #endif -- 2.30.2