Scons/Macos: Fix for vorbisfile.h not being found.

This commit is contained in:
pentarctagon 2019-01-22 18:34:21 -06:00
parent cf800bc958
commit 23375f07df

View file

@ -388,7 +388,7 @@ if env["prereqs"]:
client_env = env.Clone()
conf = client_env.Configure(**configure_args)
have_client_prereqs = have_server_prereqs & have_sdl_other()
have_client_prereqs = have_client_prereqs & (('TRAVIS' in os.environ and os.environ["TRAVIS_OS_NAME"] == "osx") or (conf.CheckLib("vorbisfile") & conf.CheckOgg()))
have_client_prereqs = have_client_prereqs & conf.CheckLib("vorbisfile") & conf.CheckOgg()
have_client_prereqs = have_client_prereqs & conf.CheckPNG()
have_client_prereqs = have_client_prereqs & conf.CheckJPG()
# have_client_prereqs = have_client_prereqs & conf.CheckOpenGL()