From 41c58ec70e75c93438e9798cea05d5af8cd8b7dc Mon Sep 17 00:00:00 2001 From: Kp Date: Sat, 23 May 2015 04:13:29 +0000 Subject: [PATCH] Remove zlib.h from physfs test The test does not use zlib functions directly. --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 273c0e258..17239ddfa 100644 --- a/SConstruct +++ b/SConstruct @@ -340,13 +340,13 @@ class ConfigureTests: ''' l = ['physfs'] successflags = {'LIBS' : l} - e = self._soft_check_system_library(context, header=['zlib.h', 'physfs.h'], main=main, lib='physfs', successflags=successflags) + e = self._soft_check_system_library(context, header=['physfs.h'], main=main, lib='physfs', successflags=successflags) if not e: return if e[0] == 0: self.message("physfs header usable; adding zlib and retesting library") l.append('z') - e = self._soft_check_system_library(context, header=['zlib.h', 'physfs.h'], main=main, lib='physfs', successflags=successflags) + e = self._soft_check_system_library(context, header=['physfs.h'], main=main, lib='physfs', successflags=successflags) if e: raise SCons.Errors.StopError(e[1]) @_custom_test