diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-11-07 18:08:50 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-11-07 18:08:50 +0000 |
commit | 64796c39cf35d075069f22d1ec5302800ebdcff7 (patch) | |
tree | b69e0c07fda5aa5ca945c3a650ea4d032f1f4a39 /devel/swigruby | |
parent | b12dacd05aa963d4902cb96722ea5d81f2f4fcf9 (diff) | |
download | ports-64796c39cf35d075069f22d1ec5302800ebdcff7.tar.gz ports-64796c39cf35d075069f22d1ec5302800ebdcff7.zip |
- Unbreak with the new g++.
Reported by: bento
- Pass "--with-swig=swig1.1" to configure.rb.
Notes
Notes:
svn path=/head/; revision=69683
Diffstat (limited to 'devel/swigruby')
-rw-r--r-- | devel/swigruby/Makefile | 2 | ||||
-rw-r--r-- | devel/swigruby/files/patch-ruby.cxx | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/devel/swigruby/Makefile b/devel/swigruby/Makefile index ed8eb78adbb0..a284637746bd 100644 --- a/devel/swigruby/Makefile +++ b/devel/swigruby/Makefile @@ -25,7 +25,7 @@ DOCS_JA= README.ja do-configure: @cd ${WRKSRC}; \ - ${SETENV} ${CONFIGURE_ENV} ${RUBY} configure.rb + ${SETENV} ${CONFIGURE_ENV} ${RUBY} configure.rb --with-swig=swig1.1 post-install: .if !defined(NOPORTDOCS) diff --git a/devel/swigruby/files/patch-ruby.cxx b/devel/swigruby/files/patch-ruby.cxx new file mode 100644 index 000000000000..93e75bfbec58 --- /dev/null +++ b/devel/swigruby/files/patch-ruby.cxx @@ -0,0 +1,12 @@ +--- ruby.cxx.orig Thu May 25 01:18:29 2000 ++++ ruby.cxx Fri Nov 8 03:05:43 2002 +@@ -840,3 +840,3 @@ + // --------------------------------------------------------------------- +-char *RUBY::ruby_typemap_lookup(char *op, DataType *type, char *pname, char *source, char *target, WrapperFunction *f = 0) { ++char *RUBY::ruby_typemap_lookup(char *op, DataType *type, char *pname, char *source, char *target, WrapperFunction *f) { + static String s; +@@ -903,3 +903,3 @@ + // --------------------------------------------------------------------- +-char *RUBY::to_VALUE(DataType *type, char *value, int raw = 0) { ++char *RUBY::to_VALUE(DataType *type, char *value, int raw) { + static String str; |