Now that you're in there, why not bring swig up to the latest? I posted a diff for a swig-wip a while back and looking at it now, it doesn't seem too hard to upgrade. I do remember being confused about boost and that maybe swig will find and use things if installed, even if --without-things is used.
Stu On 09/07/12 17:19, Juan Francisco Cantero Hurtado wrote: > The configure script of swig checks the existence of mzscheme and > performs one test. The test fails and adds two lines to Source/Makefile. > The second line breaks the compilation of swig. > > mzscheme is part of racket, available in openbsd-wip. Some users of > openbsd-wip ports will have this problem. > > Can someone commit this patch?. Thanks. > > Index: Makefile > =================================================================== > RCS file: /cvs/ports/devel/swig/Makefile,v > retrieving revision 1.53 > diff -u -p -r1.53 Makefile > --- Makefile 3 Sep 2012 08:11:40 -0000 1.53 > +++ Makefile 7 Sep 2012 20:58:01 -0000 > @@ -34,7 +34,8 @@ CONFIGURE_ARGS+= --with-tclincl=${MODTCL > --with-python=${MODPY_BIN} \ > --with-ruby=${RUBY} \ > --without-php4 \ > - --without-ocaml > + --without-ocaml \ > + --without-mzscheme > MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/Tools/config > > ALL_TARGET= swig > > >