From: Bo Peng Date: Mon, 6 Aug 2007 16:03:17 +0000 (+0000) Subject: Remind scons users to check config.log when configure fails X-Git-Tag: 1.6.10~9013 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=491a2dbfc4ddd36c418d700813ce88b1aea18124;p=features.git Remind scons users to check config.log when configure fails git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19340 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/scons/SConstruct b/development/scons/SConstruct index 18e8617c4c..9509980b6f 100644 --- a/development/scons/SConstruct +++ b/development/scons/SConstruct @@ -618,6 +618,7 @@ conf = Configure(env, # When using msvc, windows.h is required if use_vc and not conf.CheckCHeader('windows.h'): print 'Windows.h is not found. Please install Windows Platform SDK.' + print 'Please check config.log for more information.' Exit(1) # pkg-config? (if not, we use hard-coded options) @@ -631,6 +632,7 @@ else: if (not use_vc and not conf.CheckLibWithHeader('z', 'zlib.h', 'C')) \ or (use_vc and not conf.CheckLibWithHeader('zdll', 'zlib.h', 'C')): print 'Did not find zdll.lib or zlib.h, exiting!' + print 'Please check config.log for more information.' Exit(1) if conf.CheckLib('iconv'): env['ICONV_LIB'] = 'iconv' @@ -640,6 +642,7 @@ elif conf.CheckFunc('iconv_open'): env['ICONV_LIB'] = None else: print 'Did not find iconv or libiconv, exiting!' + print 'Please check config.log for more information.' Exit(1) # check socket libs @@ -876,6 +879,7 @@ else: print "Warning: Can not locate any spell checker" elif spell_opt != 'no': print "Warning: Can not locate specified spell checker:", spell_opt + print 'Please check config.log for more information.' Exit(1) # check arg types of select function @@ -886,6 +890,7 @@ sizeof_wchar_t = conf.CheckSizeOfWChar() # something wrong if sizeof_wchar_t == 0: print 'Error: Can not determine the size of wchar_t.' + print 'Please check config.log for more information.' Exit(1) # @@ -1376,6 +1381,7 @@ if frontend == 'qt4': # still can not find it if not succ: print 'Did not find qt libraries, exiting!' + print 'Please check config.log for more information.' Exit(1) # # Now, determine the correct suffix: