Cross Reference: samba_autoconf.py.patch
xref
: /
solaris-userland
/
components
/
samba
/
patches
/
samba_autoconf.py.patch
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
4369
N/A
Source: Home brewed
4369
N/A
4369
N/A
---
a/buildtools/wafsamba/samba_autoconf.py
2013-06-13 09:21:02.000000000 +0000
4369
N/A
+++
samba-4.1.7/buildtools/wafsamba/samba_autoconf.py
2014-06-10 11:53:22.567811902 +0000
4369
N/A
@@ -439,7 +439,7 @@
4369
N/A
4369
N/A
@conf
4369
N/A
def CHECK_STRUCTURE_MEMBER(conf, structname, member,
4369
N/A
- always=False, define=None, headers=None):
4369
N/A
+ always=False, define=None, headers=None, lib=None):
4369
N/A
'''check for a structure member'''
4369
N/A
if define is None:
4369
N/A
define = 'HAVE_%s' %
member.upper
()
4369
N/A
@@ -451,6 +451,7 @@
4369
N/A
always=always,
4369
N/A
headers=headers,
4369
N/A
local_include=False,
4369
N/A
+ lib=lib,
4369
N/A
msg="Checking for member %s in %s" % (member, structname))
4369
N/A
4369
N/A