diff options
Diffstat (limited to 'doc/user')
-rw-r--r-- | doc/user/sconf.in | 2 | ||||
-rw-r--r-- | doc/user/sconf.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/sconf.in b/doc/user/sconf.in index 265b720..381a174 100644 --- a/doc/user/sconf.in +++ b/doc/user/sconf.in @@ -206,7 +206,7 @@ <sconstruct> env = Environment() conf = Configure(env) - if not conf.CheckLibWithHeader('m', 'math.h'): + if not conf.CheckLibWithHeader('m', 'math.h', 'c'): print 'Did not find libm.a or m.lib, exiting!' Exit(1) env = conf.Finish() diff --git a/doc/user/sconf.xml b/doc/user/sconf.xml index 163db3b..d683bb8 100644 --- a/doc/user/sconf.xml +++ b/doc/user/sconf.xml @@ -206,7 +206,7 @@ <programlisting> env = Environment() conf = Configure(env) - if not conf.CheckLibWithHeader('m', 'math.h'): + if not conf.CheckLibWithHeader('m', 'math.h', 'c'): print 'Did not find libm.a or m.lib, exiting!' Exit(1) env = conf.Finish() |