1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

lib: added samba-util.pc creation

Thanks to Brad Hards for this patch
This commit is contained in:
Andrew Tridgell 2010-07-26 11:15:14 +10:00
parent 334d5bfe30
commit 059ad34e0f
2 changed files with 13 additions and 1 deletions

11
lib/util/samba-util.pc.in Normal file
View File

@ -0,0 +1,11 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: samba-util
Description: Samba utility functions
Requires: talloc tevent
Version: 0.0.1
Libs: -L${libdir} -lsamba-util
Cflags: -I${includedir} -DHAVE_IMMEDIATE_STRUCTURES=1

View File

@ -6,7 +6,8 @@ bld.SAMBA_LIBRARY('LIBSAMBA-UTIL',
public_headers='attr.h byteorder.h data_blob.h debug.h memory.h mutex.h safe_string.h time.h talloc_stack.h xfile.h dlinklist.h util.h tevent_ntstatus.h tevent_unix.h', public_headers='attr.h byteorder.h data_blob.h debug.h memory.h mutex.h safe_string.h time.h talloc_stack.h xfile.h dlinklist.h util.h tevent_ntstatus.h tevent_unix.h',
header_path= [ ('dlinklist.h util.h', '.'), ('*', 'util') ], header_path= [ ('dlinklist.h util.h', '.'), ('*', 'util') ],
local_include=False, local_include=False,
vnum='0.0.1' vnum='0.0.1',
pc_files='samba-util.pc'
) )