[SCM] Samba Shared Repository - branch master updated

Jelmer Vernooij jelmer at samba.org
Tue Dec 21 12:30:01 MST 2010


The branch, master has been updated
       via  58206fb tevent: Remove reference to nonexistant configure.developer from autogen.sh.
       via  4663a6a talloc: Remove reference to nonexistant configure.developer in autogen.sh.
       via  e8790b9 tevent: Bump version number after symbol versioning changes.
       via  c754fad tdb: Bump version number after symbol versioning changes.
       via  51e7244 pytdb: Make PyTdb variable static.
      from  7a47aed s3:cli_np_tstream: if SMBtrans is desired, the readv needs to wait for the last writev chunk.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 58206fb9b8d1a66af5a1c08379ed5f6e3413c2f0
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Tue Dec 21 19:31:40 2010 +0100

    tevent: Remove reference to nonexistant configure.developer from autogen.sh.
    
    Autobuild-User: Jelmer Vernooij <jelmer at samba.org>
    Autobuild-Date: Tue Dec 21 20:29:21 CET 2010 on sn-devel-104

commit 4663a6a66e45d6107781097e576cba8b81288556
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Tue Dec 21 19:24:51 2010 +0100

    talloc: Remove reference to nonexistant configure.developer in autogen.sh.

commit e8790b93f299a52317823f361bda435b44476310
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Tue Dec 21 18:57:49 2010 +0100

    tevent: Bump version number after symbol versioning changes.

commit c754fad5712cc7c1912f27eb5595c12cf65e55c6
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Tue Dec 21 18:56:18 2010 +0100

    tdb: Bump version number after symbol versioning changes.

commit 51e7244269e9c14a920f91a485cda6c785b2fc85
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Tue Dec 21 18:48:49 2010 +0100

    pytdb: Make PyTdb variable static.

-----------------------------------------------------------------------

Summary of changes:
 lib/talloc/autogen-waf.sh |   11 -----------
 lib/talloc/autogen.sh     |   12 +++++++++++-
 lib/tdb/pytdb.c           |    6 +++---
 lib/tdb/wscript           |    2 +-
 lib/tevent/autogen-waf.sh |    2 +-
 lib/tevent/wscript        |    2 +-
 6 files changed, 17 insertions(+), 18 deletions(-)
 delete mode 100755 lib/talloc/autogen-waf.sh
 mode change 120000 => 100755 lib/talloc/autogen.sh


Changeset truncated at 500 lines:

diff --git a/lib/talloc/autogen-waf.sh b/lib/talloc/autogen-waf.sh
deleted file mode 100755
index ee95847..0000000
--- a/lib/talloc/autogen-waf.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-p=`dirname $0`
-
-echo "Setting up for waf build"
-
-echo "done. Now run $p/configure or $p/configure.developer then make."
-if [ $p != "." ]; then
-	echo "Notice: The build invoke path is not the main directory! Use make with the parameter"
-	echo "-C $p. Example: make -C $p all"
-fi
diff --git a/lib/talloc/autogen.sh b/lib/talloc/autogen.sh
deleted file mode 120000
index a229cc9..0000000
--- a/lib/talloc/autogen.sh
+++ /dev/null
@@ -1 +0,0 @@
-autogen-waf.sh
\ No newline at end of file
diff --git a/lib/talloc/autogen.sh b/lib/talloc/autogen.sh
new file mode 100755
index 0000000..3005239
--- /dev/null
+++ b/lib/talloc/autogen.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+p=`dirname $0`
+
+echo "Setting up for waf build"
+
+echo "done. Now run $p/configure then make."
+if [ $p != "." ]; then
+	echo "Notice: The build invoke path is not the main directory! Use make with the parameter"
+	echo "-C $p. Example: make -C $p all"
+fi
diff --git a/lib/tdb/pytdb.c b/lib/tdb/pytdb.c
index 82407e1..981459e 100644
--- a/lib/tdb/pytdb.c
+++ b/lib/tdb/pytdb.c
@@ -9,7 +9,7 @@
      ** NOTE! The following LGPL license applies to the tdb
      ** library. This does NOT imply that all of Samba is released
      ** under the LGPL
-   
+
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
@@ -41,7 +41,7 @@ typedef struct {
 	bool closed;
 } PyTdbObject;
 
-extern PyTypeObject PyTdb;
+staticforward PyTypeObject PyTdb;
 
 static void PyErr_SetTDBError(TDB_CONTEXT *tdb)
 {
@@ -538,7 +538,7 @@ static PyMappingMethods tdb_object_mapping = {
 	.mp_subscript = (binaryfunc)obj_getitem,
 	.mp_ass_subscript = (objobjargproc)obj_setitem,
 };
-PyTypeObject PyTdb = {
+static PyTypeObject PyTdb = {
 	.tp_name = "Tdb",
 	.tp_basicsize = sizeof(PyTdbObject),
 	.tp_methods = tdb_object_methods,
diff --git a/lib/tdb/wscript b/lib/tdb/wscript
index f00d119..37b9b5b 100644
--- a/lib/tdb/wscript
+++ b/lib/tdb/wscript
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 APPNAME = 'tdb'
-VERSION = '1.2.7'
+VERSION = '1.2.8'
 
 blddir = 'bin'
 
diff --git a/lib/tevent/autogen-waf.sh b/lib/tevent/autogen-waf.sh
index ee95847..3005239 100755
--- a/lib/tevent/autogen-waf.sh
+++ b/lib/tevent/autogen-waf.sh
@@ -4,7 +4,7 @@ p=`dirname $0`
 
 echo "Setting up for waf build"
 
-echo "done. Now run $p/configure or $p/configure.developer then make."
+echo "done. Now run $p/configure then make."
 if [ $p != "." ]; then
 	echo "Notice: The build invoke path is not the main directory! Use make with the parameter"
 	echo "-C $p. Example: make -C $p all"
diff --git a/lib/tevent/wscript b/lib/tevent/wscript
index 58ef87e..6074a3e 100644
--- a/lib/tevent/wscript
+++ b/lib/tevent/wscript
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 APPNAME = 'tevent'
-VERSION = '0.9.9'
+VERSION = '0.9.10'
 
 blddir = 'bin'
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list