Re: Help with elkhound port development

2014-12-13 Thread Mark Brethen
On Dec 12, 2014, at 9:28 PM, Brandon Allbery allber...@gmail.com wrote: I already answered this one: the program makes an assumption about how much of the bison header it needs to take, one which is incorrect for bison 3 as is currently in MacPorts and is also probably wrong for all bison 2

Help with elkhound port development

2014-12-12 Thread Mark Brethen
I'm attempting to create a port for elkhound (a GLR Parser Generator) but running into build issues. :notice:configure --- Configuring elkhound :debug:configure Using compiler 'Xcode Clang' :debug:configure Executing org.macports.configure (elkhound) :info:configure Testing C++ compiler ...

Re: Help with elkhound port development

2014-12-12 Thread Brandon Allbery
On Fri, Dec 12, 2014 at 2:08 PM, Mark Brethen mark.bret...@gmail.com wrote: :info:build bflatten.cc:35:10: warning: cast to 'const void *' from smaller integer type 'int' [-Wint-to-void-pointer-cast] This indicates that the port is not 64-bit clean and you may have to force the arch to i386

Re: Help with elkhound port development

2014-12-12 Thread Mark Brethen
This is a build dependency for a program I want to use (and also port). The author does provide a pre-built elkhound for mac os as a separate download. Below is the current state of my Portfile (if you want to check out the source): PortSystem 1.0 PortGroup github 1.0

Re: Help with elkhound port development

2014-12-12 Thread Ryan Schmidt
On Dec 12, 2014, at 1:26 PM, Mark Brethen wrote: PortSystem 1.0 PortGroup github 1.0 github.setupWeiDUorg elkhound 2014-08-03 distname${version} master_siteshttps://github.com/${github.author}/${name}/archive/ You're usually using the

Re: Help with elkhound port development

2014-12-12 Thread Mark Brethen
On Dec 12, 2014, at 1:58 PM, Ryan Schmidt ryandes...@macports.org wrote: On Dec 12, 2014, at 1:26 PM, Mark Brethen wrote: PortSystem 1.0 PortGroup github 1.0 github.setupWeiDUorg elkhound 2014-08-03 distname${version} master_sites

Re: Help with elkhound port development

2014-12-12 Thread Ryan Schmidt
On Dec 12, 2014, at 7:18 PM, Mark Brethen wrote: On Dec 12, 2014, at 1:58 PM, Ryan Schmidt wrote: On Dec 12, 2014, at 1:26 PM, Mark Brethen wrote: PortSystem 1.0 PortGroup github 1.0 github.setupWeiDUorg elkhound 2014-08-03 distname${version}

Re: Help with elkhound port development

2014-12-12 Thread Mark Brethen
On Dec 12, 2014, at 7:38 PM, Ryan Schmidt ryandes...@macports.org wrote: On Dec 12, 2014, at 7:18 PM, Mark Brethen wrote: On Dec 12, 2014, at 1:58 PM, Ryan Schmidt wrote: On Dec 12, 2014, at 1:26 PM, Mark Brethen wrote: PortSystem 1.0 PortGroup github 1.0

Re: Help with elkhound port development

2014-12-12 Thread Brandon Allbery
On Fri, Dec 12, 2014 at 9:59 PM, Mark Brethen mark.bret...@gmail.com wrote: Now, when building I had 5 errors: :info:build perl ../smbase/run-flex.pl -oagramlex.yy.cc agramlex.lex :info:build flex -oagramlex.yy.cc agramlex.lex :info:build modifying agramlex.yy.cc :info:build c++ -c

Re: Help with elkhound port development

2014-12-12 Thread Lawrence Velázquez
On Dec 12, 2014, at 10:28 PM, Brandon Allbery allber...@gmail.com wrote: I already answered this one: the program makes an assumption about how much of the bison header it needs to take, one which is incorrect for bison 3 as is currently in MacPorts We currently provide Bison 2.7.1. vq