diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-12-14 08:55:55 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-12-14 08:55:55 +0000 |
commit | 49c3758798dd665c186cc4b57d58eda980fc5f32 (patch) | |
tree | 01775abbaf3f9b79dda6bce3fdb3d45d19267c95 /x11-fm | |
parent | c07c9a8b7b596a27eb223a3e96249e4a1a5f74e8 (diff) | |
download | FreeBSD-ports-49c3758798dd665c186cc4b57d58eda980fc5f32.zip FreeBSD-ports-49c3758798dd665c186cc4b57d58eda980fc5f32.tar.gz |
Provide bandaid to fix the build for some people:
- add (missed?) `#include <glib.h>' into treestore.h;
- ensure that local include path is searched before the global one, so that
the build doesn't break if user occasionally has different includes with
the same name in both paths (e.g. global.h).
Submitted by: mjacobs
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/gnomemc/files/patch-src::Makefile.in | 14 | ||||
-rw-r--r-- | x11-fm/gnomemc/files/patch-src::treestore.h | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/x11-fm/gnomemc/files/patch-src::Makefile.in b/x11-fm/gnomemc/files/patch-src::Makefile.in new file mode 100644 index 0000000..478183a --- /dev/null +++ b/x11-fm/gnomemc/files/patch-src::Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- src/Makefile.in 2001/12/14 08:48:56 1.1 ++++ src/Makefile.in 2001/12/14 08:49:23 +@@ -8,7 +8,7 @@ + @MCF@ + + CFLAGS = $(XCFLAGS) +-CPPFLAGS = $(XCPPFLAGS) @MCCFLAGS@ ++CPPFLAGS = -I. $(XCPPFLAGS) @MCCFLAGS@ + LDFLAGS = $(XLDFLAGS) + DEFS = $(XDEFS) -DREGEX_MALLOC -DLIBDIR=\""$(mclibdir)/"\" \ + -DCONFDIR=\""$(confdir)/"\" -DLOCALEDIR=\""$(localedir)/"\" diff --git a/x11-fm/gnomemc/files/patch-src::treestore.h b/x11-fm/gnomemc/files/patch-src::treestore.h new file mode 100644 index 0000000..dadba91b --- /dev/null +++ b/x11-fm/gnomemc/files/patch-src::treestore.h @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- src/treestore.h 2001/12/14 08:39:52 1.1 ++++ src/treestore.h 2001/12/14 08:40:21 +@@ -1,6 +1,8 @@ + #ifndef __TREE_STORE_H + #define __TREE_STORE_H + ++#include <glib.h> ++ + /* Default filenames for the tree */ + + #ifdef OS2_NT |