File: wscript_build

package info (click to toggle)
samba 2%3A4.23.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188,188 kB
  • sloc: ansic: 2,007,646; python: 272,677; sh: 72,350; xml: 51,676; perl: 36,094; makefile: 6,353; yacc: 5,324; exp: 1,582; lex: 1,504; cpp: 1,224; awk: 589; java: 119; csh: 58; pascal: 54; sed: 45; asm: 30
file content (21 lines) | stat: -rw-r--r-- 485 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python

bld.SAMBA_LIBRARY('http',
	source='http.c http_auth.c http_conn.c',
	deps='talloc tevent gensec dns_lookup',
	private_library=True,
)

bld.SAMBA_MODULE('gensec_http_basic',
	source='gensec/basic.c',
	subsystem='gensec',
	init_function='gensec_http_basic_init',
	deps='samba-util auth_session'
)

bld.SAMBA_MODULE('gensec_http_generic',
	source='gensec/generic.c',
	subsystem='gensec',
	init_function='gensec_http_generic_init',
	deps='samba-util auth_session'
)