Changeset 8fcbd37
- Timestamp:
- Nov 28, 2016, 4:27:34 PM (8 years ago)
- Branches:
- sampler
- Children:
- 7cfb55a
- Parents:
- 598774b
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r598774b r8fcbd37 12 12 uselib += ['AVUTIL'] 13 13 uselib += ['BLAS'] 14 uselib += ['PTHREAD'] 14 15 15 16 source = ctx.path.ant_glob('*.c **/*.c') -
wscript
r598774b r8fcbd37 124 124 ctx.check(header_name='unistd.h', mandatory = False) 125 125 126 ctx.check(header_name='pthread.h', mandatory = False) 127 needs_pthread = ctx.get_define("HAVE_PTHREAD_H") is not None 128 if needs_pthread: 129 ctx.check_cc(lib="pthread", uselib_store="PTHREAD", mandatory=needs_pthread) 130 126 131 target_platform = sys.platform 127 132 if ctx.options.target_platform:
Note: See TracChangeset
for help on using the changeset viewer.