Am 24.10.2013 03:39 schrieb "silvioprog" <[email protected]>: > > 2013/10/23 Marco van de Voort <[email protected]> >> >> On Tue, Oct 15, 2013 at 01:52:44PM -0300, silvioprog wrote: >> > I'm trying to compila Lazarus in Linux Mint 15 ( http://www.linuxmint.com/), >> > but: >> >> Try adding >> -XLAcairo=cairo,cairo-gobject > > > Sorry for my ignorance, but when I try: > > silvioprog@silvioprog-vm ~ $ cd lazarus/ > silvioprog@silvioprog-vm ~/lazarus $ make clean all -XLAcairo=cairo,cairo-gobject
This passes the option to make (which dies nit understand what you want), but you should pass it to the build process itself instead: make clean all OPT="-XLAcairo=cairo,cairo-gobject" Regards, Sven
-- _______________________________________________ Lazarus mailing list [email protected] http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
