Skip to content

Commit

Permalink
Scons/Macos: Fix for vorbisfile.h not being found.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pentarctagon committed Jan 23, 2019
1 parent b7d5341 commit e3e23f7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions SConstruct
Expand Up @@ -388,9 +388,7 @@ if env["prereqs"]:

client_env = env.Clone()
conf = client_env.Configure(**configure_args)
have_client_prereqs = have_server_prereqs & have_sdl_other() & \
(('TRAVIS' in os.environ and os.environ["TRAVIS_OS_NAME"] == "osx") or (conf.CheckLib("vorbisfile") & \
conf.CheckOgg())) & \
have_client_prereqs = have_server_prereqs & have_sdl_other() & conf.CheckLib("vorbisfile") & conf.CheckOgg() & \
conf.CheckPNG() & \
conf.CheckJPG() & \
conf.CheckPKG("gobject-2.0") & \
Expand Down

0 comments on commit e3e23f7

Please sign in to comment.