summaryrefslogtreecommitdiffstats
path: root/source/lib/talloc
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-11-29 14:49:47 +0100
committerMichael Adam <obnox@samba.org>2008-02-13 01:40:11 +0100
commit22d48224d3235403b916c98c92915165fe7ef330 (patch)
treefb82e6aa7b45d967d3e1c35234f8abac4bf06524 /source/lib/talloc
parent8e35bbeac286c3b8d64d69ebe9bb4a8f5405a9c0 (diff)
downloadsamba-22d48224d3235403b916c98c92915165fe7ef330.tar.gz
samba-22d48224d3235403b916c98c92915165fe7ef330.tar.xz
samba-22d48224d3235403b916c98c92915165fe7ef330.zip
r26197: Add bindings for libsecurity.
(cherry picked from parts of commit 8625cd403ba3a7d2b1b1fccfeb5efd7e21de0135) Michael
Diffstat (limited to 'source/lib/talloc')
-rw-r--r--source/lib/talloc/config.mk9
-rw-r--r--source/lib/talloc/talloc.i2
2 files changed, 2 insertions, 9 deletions
diff --git a/source/lib/talloc/config.mk b/source/lib/talloc/config.mk
index 714ad72d1cd..942ced6b868 100644
--- a/source/lib/talloc/config.mk
+++ b/source/lib/talloc/config.mk
@@ -1,13 +1,8 @@
-################################################
-# Start LIBRARY LIBTALLOC
[LIBRARY::LIBTALLOC]
-VERSION = 0.0.1
-SO_VERSION = 0
+VERSION = 1.0.0
+SO_VERSION = 1
OBJ_FILES = talloc.o
MANPAGE = talloc.3
CFLAGS = -Ilib/talloc
PUBLIC_HEADERS = talloc.h
DESCRIPTION = A hierarchical pool based memory system with destructors
-#
-# End LIBRARY LIBTALLOC
-################################################
diff --git a/source/lib/talloc/talloc.i b/source/lib/talloc/talloc.i
index 593c20465ee..c35d5d24116 100644
--- a/source/lib/talloc/talloc.i
+++ b/source/lib/talloc/talloc.i
@@ -19,8 +19,6 @@
/* Don't expose talloc contexts in Python code. Python does reference
counting for us, so just create a new top-level talloc context.
*/
-%module talloc;
-
%typemap(in, numinputs=0) TALLOC_CTX * {
$1 = NULL;
}