source: vendor/current/third_party/popt/wscript

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 505 bytes
Line 
1#!/usr/bin/env python
2
3import Options
4
5def configure(conf):
6 conf.CHECK_HEADERS('float.h')
7
8 if conf.CHECK_POPT():
9 conf.define('USING_SYSTEM_POPT', 1)
10
11def build(bld):
12 if bld.CONFIG_SET('USING_SYSTEM_POPT'):
13 return
14
15 bld.SAMBA_LIBRARY('popt',
16 source='findme.c popt.c poptconfig.c popthelp.c poptparse.c',
17 cflags='-DDBL_EPSILON=__DBL_EPSILON__',
18 allow_warnings=True,
19 private_library=True)
Note: See TracBrowser for help on using the repository browser.