diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-05-10 21:40:22 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-05-10 21:40:22 +0800 |
commit | f666dff82cc3a04e6e188fde341f9fccb77eca0b (patch) | |
tree | 1adac44d8321fd622e918f328516a67e7b087ec2 /x11-toolkits/wxgtk28/files/patch-contrib-src-Makefile.in | |
parent | 73a712eaabafc5bedc0042c413c9969524f0fc3e (diff) | |
download | marcuscom-ports-f666dff82cc3a04e6e188fde341f9fccb77eca0b.tar marcuscom-ports-f666dff82cc3a04e6e188fde341f9fccb77eca0b.tar.gz marcuscom-ports-f666dff82cc3a04e6e188fde341f9fccb77eca0b.tar.bz2 marcuscom-ports-f666dff82cc3a04e6e188fde341f9fccb77eca0b.tar.lz marcuscom-ports-f666dff82cc3a04e6e188fde341f9fccb77eca0b.tar.xz marcuscom-ports-f666dff82cc3a04e6e188fde341f9fccb77eca0b.tar.zst marcuscom-ports-f666dff82cc3a04e6e188fde341f9fccb77eca0b.zip |
Add pangox-compat to fix the build of these.
Submitted by: Beeblebrox
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18439 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/wxgtk28/files/patch-contrib-src-Makefile.in')
-rw-r--r-- | x11-toolkits/wxgtk28/files/patch-contrib-src-Makefile.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x11-toolkits/wxgtk28/files/patch-contrib-src-Makefile.in b/x11-toolkits/wxgtk28/files/patch-contrib-src-Makefile.in new file mode 100644 index 000000000..78773088b --- /dev/null +++ b/x11-toolkits/wxgtk28/files/patch-contrib-src-Makefile.in @@ -0,0 +1,29 @@ +--- contrib/src/Makefile.in.orig 2009-03-06 18:18:00.000000000 +0600 ++++ contrib/src/Makefile.in 2009-03-20 00:07:59.000000000 +0600 +@@ -2,15 +2,25 @@ + + CONTRIB_SUBDIRS=fl gizmos mmedia ogl plot stc svg #deprecated #applet + +-all: ++WX_RELEASE= @WX_RELEASE@ ++wx_top_builddir= @wx_top_builddir@ ++@COND_UNICODE_1@wxregexu_depname= wxregexu ++ ++all: $(wxregexu_depname) + @for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE)); done + ++wxregexu: ++ @cd ../.. && $(MAKE) $(wx_top_builddir)/lib/libwxregexu-$(WX_RELEASE).a ++ + clean: + @for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE) clean); done + + install: + @for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE) install); done + ++ ++install-common: ++ @for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE) install-common); done + uninstall: + @for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE) uninstall); done + |