Skip to content

Commit

Permalink
Fixed an incorrect check for physfs in meson.build.
Browse files Browse the repository at this point in the history
This may be the cause of #5, given that it seems that physfs is what
was failing there. Will need to test this with an RC to be sure.
  • Loading branch information
onpon4 committed Mar 25, 2022
1 parent 85d60de commit dcb2fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if buildExec.disabled() == false
libxml2 = cc.find_library('xml2', required: true) # e.g., MacOSX SDK
endif

use_system_physfs = ('glpk' not in get_option('force_fallback_for') and 'forcefallback' != get_option('wrap_mode'))
use_system_physfs = ('physfs' not in get_option('force_fallback_for') and 'forcefallback' != get_option('wrap_mode'))
if use_system_physfs
system_physfs = dependency('physfs', required: false)
if not system_physfs.found()
Expand Down

0 comments on commit dcb2fc7

Please sign in to comment.