* Landry Breuil on Mon, May 21, 2012 at 12:09:55AM +0200: > > If I substitute line 96 onward: > > | MOZILLA_INCLUDES = `pkg-config --cflags libxul19` > > | MOZILLA_LIBS = `pkg-config --libs libxul19` > > | > > | XULRUNNER_INCLUDES = `pkg-config --cflags libxul19-embedding nspr` > > | XULRUNNER_LIBS = `pkg-config --libs libxul19-embedding` > > > > with: > > | MOZILLA_INCLUDES = `pkg-config --cflags libxul` > > | MOZILLA_LIBS = `pkg-config --libs libxul` > > | > > | XULRUNNER_INCLUDES = `pkg-config --cflags libxul-embedding nspr` > > | XULRUNNER_LIBS = `pkg-config --libs libxul-embedding` > > > > Then everything at least builds fine.
> You're not building on -current enough up-to-date. libxul.pc and > libxul-embedding.pc are installed as libxul19.pc and > libxul19-embedding.pc since 2012/04/07. Oh. I installed the machine where I was trying from scratch today. But now that you point it out, it is -release, not -current. My fault, sorry. But still after changing libxul19 to libxul, everything compiles just fine, so the 'install' step should still be failing even on -current. If I find the time, I'll try it on -current as soon as I get the configuration of that machine stabilised. Bye, s//un