Page 2 of 2

Re: LÖVE 0.7.2

Posted: Thu May 17, 2012 9:10 pm
by bartbes
It seems debian has borked up libdevil-dev's dependencies, and because ubuntu imports from debian, ubuntu now suffers from it too.
In any case, this is resolved by installing libmng-dev.

Re: LÖVE 0.7.2

Posted: Thu May 17, 2012 9:29 pm
by Nixola
Ok, it works now, thanks Bartbes and Josef!

Re: LÖVE 0.7.2

Posted: Fri Nov 01, 2013 11:53 pm
by BozoDel
Hey, folks, sorry to revive this ole thread, but it seems to be the right one. First of all, I wanna be able to build it in a way that I can install several different versions of LÖVE (you know, for playing those very ole games). What if I edit the configure.in file and replace

Code: Select all

AC_INIT([love], [HEAD])
with

Code: Select all

AC_INIT([love0-6-2], [HEAD])
, will that do the trick?

Or maybe doing like josefnpat said, but pasting that binary into some love0-6-2 folder?

Also, I'm getting a "configure: error: Can't LÖVE without FLAC++" message. Can't I just disable flac somehow? Theres a line in configure.in that says

Code: Select all

AC_SEARCH_LIBS([FLAC__metadata_chain_new], [FLAC++], [], AC_MSG_ERROR([Can't LÖVE without FLAC++]))
. I tried commenting it with "#" and erasing it, but I keep getting the same message.

Re: LÖVE 0.7.2

Posted: Sat Nov 02, 2013 10:32 am
by bartbes
BozoDel wrote: Also, I'm getting a "configure: error: Can't LÖVE without FLAC++" message. Can't I just disable flac somehow?[...]I tried commenting it with "#" and erasing it, but I keep getting the same message.
You've got to rerun automagic.

Re: LÖVE 0.7.2

Posted: Sat Nov 02, 2013 11:56 am
by BozoDel
bartbes wrote:You've got to rerun automagic.
Ah! I should have paid more attention :crazy:

But figured out that only removes a warning. I still can't make the file without FLAC support. I tried installing flac and flac++-dev, but didn't work (never had any trouble playing flac files, btw). Also tried commenting out everything with "flac" in it in src/Makefile, src/Makefile.am and src/Makefile.in...

Seriously thinking this is not worth the bother. Thanks anyway ^^

EDIT: In case someone with a similar problem finds this thread, you can try this: https://www.love2d.org/wiki/Adult_Lib
(I haven't tried it myself yet)