[19:14:22] <m0t0ro> hello guys, I'm having this error when I try to compile exult on Os X 10.9.5
[19:14:47] <m0t0ro> ./configure: line 18500: syntax error near unexpected token `OGG,'
[19:14:47] <m0t0ro> ./configure: line 18500: ` PKG_CHECK_MODULES(OGG, ogg >= 1.0 vorbis >= 1.0.1 vorbisfile, , as_fn_error $? "*** must have Ogg/Vorbis installed!" "$LINENO" 5)'
[19:15:10] <m0t0ro> .
[19:15:29] <m0t0ro> but I alredy have installed those libs with MacPorts
[19:16:18] <m0t0ro> note that I'm trying to compile a static executable with:
[19:16:22] <m0t0ro> ./configure --enable-static-libraries --with-macosx-static-lib-path=/opt/local/lib
[19:50:10] <Dominus> M0t0ro: you might need to set some cflags or so, or explicitly add -ogglibs or oggprefix in the configure line
[19:50:38] <Dominus> ./configure -help should give xou pointers
[19:51:04] <Dominus> I'll write you my simple compile script later
[19:51:30] <Dominus> If you have to leave - read the logs then ;)
[19:51:34] <Dominus> ?logs
[19:51:34] <exultbot> Logs are available at http://log.usecode.org/exultlog.php
[19:51:44] <Dominus> bbl
[19:58:21] <m0t0ro> I will leave this open so I can read it anytime
[20:01:17] <m0t0ro> this didn't work: ./configure --enable-static-libraries --with-macosx-static-lib-path=/opt/local/lib --with-ogg-libraries=/opt/local/lib --with-vorbis-libraries=/opt/local/lib
[20:40:10] <Dominus> Try
[20:40:11] <Dominus> export PATH=/opt/local/bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
[20:40:12] <Dominus> export CPPFLAGS='-I/opt/local/include'
[20:40:13] <Dominus> export CFLAGS='-I/opt/local/include'
[20:40:14] <Dominus> export CXXFLAGS='-I/opt/local/include'
[20:40:15] <Dominus> export LDFLAGS='-L/opt/local/lib'
[20:40:16] <Dominus> export PKG_CONFIG_PATH="/opt/local/lib/pkgconfig"
[20:40:17] <Dominus> ./autogen.sh
[20:40:42] <Dominus> Then ./configure with the static flags
[20:41:42] <Dominus> M0t0ro: i'm gone again, sick kid needs looking after
[20:48:16] <m0t0ro> ok, I'm going to check that, thank you
[21:11:44] <m0t0ro> ok, I fixed it alredy
[21:12:03] <m0t0ro> I have read this post: http://exult.sourceforge.net/forum/read.php?f=1&i=408945&t=408945
[21:12:35] <m0t0ro> thank you Dominus