Skip to content

Commit c0ac64c

Browse files
author
Ville Tuulos
committed
Removed checks for unnecessary dependencies
1 parent 2218a41 commit c0ac64c

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

SConstruct

+10-12
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ Help(opts.GenerateHelpText(g_env))
3939

4040
modules = ['lib/SConstruct',
4141
'preproc/SConstruct',
42-
'index/SConstruct',
43-
'lang/SConstruct',
44-
'circus/SConstruct']
42+
'index/SConstruct']
4543

4644
conf = Configure(g_env)
4745

@@ -53,17 +51,17 @@ if not conf.CheckLib('Judy', autoadd=0):
5351
print 'Did not find libJudy.a or Judy.lib, exiting!'
5452
Exit(1)
5553

56-
if not conf.CheckHeader('zlib.h', language='C'):
57-
print 'Did not find zlib.h, exiting!'
58-
Exit(1)
54+
#if not conf.CheckHeader('zlib.h', language='C'):
55+
# print 'Did not find zlib.h, exiting!'
56+
# Exit(1)
5957

60-
if not conf.CheckLib('z', autoadd=0):
61-
print 'Did not find libz.a or z.lib, exiting!'
62-
Exit(1)
58+
#if not conf.CheckLib('z', autoadd=0):
59+
# print 'Did not find libz.a or z.lib, exiting!'
60+
# Exit(1)
6361

64-
if not conf.CheckLib('readline', autoadd=0):
65-
print 'Did not find libreadline.a, exiting!'
66-
Exit(1)
62+
#if not conf.CheckLib('readline', autoadd=0):
63+
# print 'Did not find libreadline.a, exiting!'
64+
# Exit(1)
6765

6866
#if g_env['DOCBDB']:
6967
# if not conf.CheckLib('db', autoadd=0):

0 commit comments

Comments
 (0)