From: Bo Peng Date: Tue, 21 Aug 2007 21:21:39 +0000 (+0000) Subject: SCons: msvc gives different result for this ICONV_CONST test so I need to change... X-Git-Tag: 1.6.10~8770 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bb0f26bc053aeec13be7119eeebe59e10100fb56;p=features.git SCons: msvc gives different result for this ICONV_CONST test so I need to change the test to .cpp git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19701 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/scons/scons_utils.py b/development/scons/scons_utils.py index 4749bf882e..7f3ca9861b 100644 --- a/development/scons/scons_utils.py +++ b/development/scons/scons_utils.py @@ -416,7 +416,7 @@ int main() { } ''' conf.Message('Checking if the declaration of iconv needs const... ') - ret = conf.TryLink(check_iconv_const, '.c') + ret = conf.TryLink(check_iconv_const, '.cpp') conf.Result(ret) return ret