1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

talloc: Fix talloc-compat pc files/headers.

Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sun Aug 21 04:53:07 CEST 2011 on sn-devel-104
This commit is contained in:
Jelmer Vernooij 2011-08-21 03:19:17 +02:00
parent 31912781ca
commit 9fa8f27ed8

View File

@ -81,7 +81,8 @@ def build(bld):
'compat/talloc_compat1.c', 'compat/talloc_compat1.c',
public_deps='talloc', public_deps='talloc',
soname='libtalloc.so.1', soname='libtalloc.so.1',
pc_files='talloc.pc', pc_files=[],
public_headers=[],
enabled=bld.env.TALLOC_COMPAT1) enabled=bld.env.TALLOC_COMPAT1)
else: else:
private_library = True private_library = True
@ -96,6 +97,7 @@ def build(bld):
hide_symbols=True, hide_symbols=True,
vnum=VERSION, vnum=VERSION,
public_headers='talloc.h', public_headers='talloc.h',
pc_files='talloc.pc',
public_headers_install=not private_library, public_headers_install=not private_library,
private_library=private_library, private_library=private_library,
manpages='talloc.3') manpages='talloc.3')