Posts for AberrantWolf

AberrantWolf
He/Him
Experienced Forum User
Joined: 7/24/2012
Posts: 5
Invariel wrote:
You might find this page very rewarding then.
OMG, yes, thank you! I found an old (broken) link when I searched the forum for this earlier. I'm glad this page still exists, and I will keep it open in a tab. :)
Post subject: I appreciate CC commentaries on YouTube
AberrantWolf
He/Him
Experienced Forum User
Joined: 7/24/2012
Posts: 5
I watch TASs frequently while working (well, listen, since they're almost always in a background tab), and I recently found this Cave Story one (https://youtu.be/8NYJA-JGJx0) that had the runner's commentary in close captions. I just wanted to say that I love this, and now I only ever want to watch videos with in-line text commentary. It helps me feel like I can understand what's going on and why. So thanks, and please keep putting commentaries like this on videos. Cheers! ^_^
AberrantWolf
He/Him
Experienced Forum User
Joined: 7/24/2012
Posts: 5
You are correct that neither of those variables was getting set. I set them manually. I also checked that the SConstruct file was even using those flags, and it appears to be. I ran scons again, and the output didn't change even after setting the variable individually.
AberrantWolf
He/Him
Experienced Forum User
Joined: 7/24/2012
Posts: 5
I did install zlib. It got installed as part of something else, but I installed it by hand just in case after I saw the error. Here is my console output so you can see what's going on (including me checking that zlib is installed):
13:45:25 [scott@mikuru:~/opensource/fceu2.1.5] $ sudo port install zlib
--->  Cleaning zlib
--->  Scanning binaries for linking errors: 100.0%
--->  No broken files found.
13:45:29 [scott@mikuru:~/opensource/fceu2.1.5] $  CFLAGS=-I/opt/local/include LDFLAGS=-L/opt/local/lib scons
scons: Reading SConscript files ...
platform:  darwin
Checking for inflate in C library z... no
AssertionError: please install: zlib:
  File "/Users/scott/opensource/fceu2.1.5/SConstruct", line 58:
    assert conf.CheckLibWithHeader('z', 'zlib.h', 'C', 'inflate;', 1), "please install: zlib"
I checked the SConfig script, and it looks like it's just looking for the headers and hasn't even gotten to the point of compiling yet. :\
Post subject: Compiling FCEU on Mac OS X
AberrantWolf
He/Him
Experienced Forum User
Joined: 7/24/2012
Posts: 5
I have followed the directions on he website and installed all of the indicated macports libraries (scons, libsdl, zenity, lua, gtk2). I then downloaded the current source code, uncompressed it, and did the following command: CFLAGS=-I/opt/local/include LDFLAGS=-L/opt/local/lib scons This is exactly what I was told to do on the docs webpage. I get an error that it could not find zlib. I did it on my other mac (this one runs OSX 10.7, the other runs 10.6) and it found zlib and sdl, but not GTK. I have double checked that all the libraries have been installed using macports. I'm not sure what my next step in trying to get this built should be. Any suggestions?