diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2015-02-13 16:18:10 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2015-05-02 21:36:45 +0200 |
commit | b9d887fc3cd3ae26c678bf35bc90c4f1d6b03888 (patch) | |
tree | ccbe25664282dd7915c55e73e25772b8801e9088 /wscript | |
parent | a46f55e0a2c9362b7b549ead851043c7b9e2791d (diff) | |
download | pucket-b9d887fc3cd3ae26c678bf35bc90c4f1d6b03888.tar.gz pucket-b9d887fc3cd3ae26c678bf35bc90c4f1d6b03888.tar.bz2 pucket-b9d887fc3cd3ae26c678bf35bc90c4f1d6b03888.zip |
Unify prng use
Finally drop all isaac references, do not use system rng any more. Drop
rng state from flam3_frame – it was not used anyway.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ def configure(conf): conf.write_config_header ('config.h') def build(bld): - bld.stlib (features='c cstlib', source='flam3.c filters.c parser.c variations.c interpolation.c palettes.c png.c xorshift.c docstring.c', target='libflam3', use='xml2 png pthread', includes='.') + bld.stlib (features='c cstlib', source='flam3.c filters.c parser.c variations.c interpolation.c palettes.c png.c random.c docstring.c', target='libflam3', use='xml2 png pthread', includes='.') bld.program (features='c cprogram', source='flam3-render.c', target='flam3-render', use='libflam3 xml2 png amdlibm pthread', includes='.') bld.program (features='c cprogram', source='flam3-genome.c', target='flam3-genome', use='libflam3 xml2 png amdlibm pthread', includes='.') bld.program (features='c cprogram', source='flam3-animate.c', target='flam3-animate', use='libflam3 xml2 png amdlibm pthread', includes='.') |