diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2010-03-07 02:58:10 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2010-03-07 02:58:10 +0800 |
commit | d1f50242ac0435c4fac68c21f799dd0a136a695f (patch) | |
tree | e724b95264b463628436344b0cc61b824f6dc25c | |
parent | e657d1d5279155df26b1a7fc015ed128ddb5d8fb (diff) | |
download | freebsd-ports-gnome-d1f50242ac0435c4fac68c21f799dd0a136a695f.tar.gz freebsd-ports-gnome-d1f50242ac0435c4fac68c21f799dd0a136a695f.tar.zst freebsd-ports-gnome-d1f50242ac0435c4fac68c21f799dd0a136a695f.zip |
- Fix build in 8-STABLE and 9-CURRENT [1]
- Mark MAKE_JOBS_SAFE
Reported by: pointyhat via erwin ([1])
Feature safe: yes
-rw-r--r-- | graphics/kudu/Makefile | 1 | ||||
-rw-r--r-- | graphics/kudu/files/patch-src-globals.h | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/graphics/kudu/Makefile b/graphics/kudu/Makefile index c6eeeed0484d..079dbd90bf07 100644 --- a/graphics/kudu/Makefile +++ b/graphics/kudu/Makefile @@ -20,6 +20,7 @@ USE_GL= gl USE_PYTHON= yes USE_BZIP2= yes GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/graphics/kudu/files/patch-src-globals.h b/graphics/kudu/files/patch-src-globals.h new file mode 100644 index 000000000000..4040a983eac0 --- /dev/null +++ b/graphics/kudu/files/patch-src-globals.h @@ -0,0 +1,13 @@ +--- src/globals.h.orig 2006-09-12 21:50:10.000000000 +0400 ++++ src/globals.h 2010-03-06 20:43:04.000000000 +0300 +@@ -52,6 +52,10 @@ + #include <sys/timeb.h> + #include <sys/stat.h> + #include <sys/types.h> ++ ++#undef __XSI_VISIBLE ++#define __XSI_VISIBLE 700 ++ + #include <dirent.h> + #include <getopt.h> + |