Skip to content

Commit

Permalink
remove regex dependency / old docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Jun 9, 2014
1 parent 6749c25 commit 75e2d88
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 1,123 deletions.
6 changes: 1 addition & 5 deletions SConscript
Expand Up @@ -287,7 +287,7 @@ def findLibs(env, conf):
FatalError("pthreads development library not found or not installed")

if msvc:
if not conf.CheckHeader('dirent.h') or not conf.CheckHeader('fftw3.h') or not conf.CheckHeader('pthread.h') or not conf.CheckHeader('sched.h') or not conf.CheckHeader('zlib.h'):
if not conf.CheckHeader('dirent.h') or not conf.CheckHeader('fftw3.h') or not conf.CheckHeader('pthread.h') or not conf.CheckHeader('zlib.h'):
FatalError("Required headers not found")
else:
#Look for libm
Expand Down Expand Up @@ -320,10 +320,6 @@ def findLibs(env, conf):
if not conf.CheckLib('rt'):
FatalError("librt not found or not installed")
elif platform == "Windows":
#Look for regex
if not conf.CheckLib(['gnurx', 'regex']):
FatalError("regex not found or not installed")

#These need to go last
if not conf.CheckLib('gdi32') or not conf.CheckLib('winmm') or (not msvc and not conf.CheckLib('dxguid')):
FatalError("Error: some windows libraries not found or not installed, make sure your compiler is set up correctly")
Expand Down
Empty file removed docs/.py.html
Empty file.

0 comments on commit 75e2d88

Please sign in to comment.