svn commit: samba r15387 - in branches/SAMBA_4_0/source: build/smb_build libcli/nbt ntvfs ntvfs/cifs_posix_cli ntvfs/simple param rpc_server

jelmer at samba.org jelmer at samba.org
Mon May 1 23:03:33 GMT 2006


Author: jelmer
Date: 2006-05-01 23:03:32 +0000 (Mon, 01 May 2006)
New Revision: 15387

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15387

Log:
Fix installation of dcerpc headers, remove more instances of uint_t

Modified:
   branches/SAMBA_4_0/source/build/smb_build/config_mk.pm
   branches/SAMBA_4_0/source/libcli/nbt/libnbt.h
   branches/SAMBA_4_0/source/ntvfs/cifs_posix_cli/cvfs.h
   branches/SAMBA_4_0/source/ntvfs/ntvfs.h
   branches/SAMBA_4_0/source/ntvfs/simple/svfs.h
   branches/SAMBA_4_0/source/param/loadparm.h
   branches/SAMBA_4_0/source/rpc_server/config.mk


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/config_mk.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/config_mk.pm	2006-05-01 22:53:29 UTC (rev 15386)
+++ branches/SAMBA_4_0/source/build/smb_build/config_mk.pm	2006-05-01 23:03:32 UTC (rev 15387)
@@ -55,7 +55,11 @@
 
 		"MANPAGE"		=> "string",
 		"PRIVATE_PROTO_HEADER"	=> "string",
+		"PUBLIC_PROTO_HEADER"	=> "string",
 
+
+		"PUBLIC_HEADERS"	=> "list",
+
 		"CFLAGS"		=> "string"
 		},
 	"BINARY" => {

Modified: branches/SAMBA_4_0/source/libcli/nbt/libnbt.h
===================================================================
--- branches/SAMBA_4_0/source/libcli/nbt/libnbt.h	2006-05-01 22:53:29 UTC (rev 15386)
+++ branches/SAMBA_4_0/source/libcli/nbt/libnbt.h	2006-05-01 23:03:32 UTC (rev 15387)
@@ -74,7 +74,7 @@
 	/* shall we allow multiple replies? */
 	BOOL allow_multiple_replies;
 
-	uint_t num_replies;
+	unsigned int num_replies;
 	struct nbt_name_reply {
 		struct nbt_name_packet *packet;
 		struct socket_address *dest;

Modified: branches/SAMBA_4_0/source/ntvfs/cifs_posix_cli/cvfs.h
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/cifs_posix_cli/cvfs.h	2006-05-01 22:53:29 UTC (rev 15386)
+++ branches/SAMBA_4_0/source/ntvfs/cifs_posix_cli/cvfs.h	2006-05-01 23:03:32 UTC (rev 15387)
@@ -13,7 +13,7 @@
 };
 
 struct svfs_dir {
-	uint_t count;
+	unsigned int count;
 	char *unix_dir;
 	struct svfs_dirfile {
 		char *name;
@@ -30,6 +30,6 @@
 struct search_state {
 	struct search_state *next, *prev;
 	uint16_t handle;
-	uint_t current_index;
+	unsigned int current_index;
 	struct svfs_dir *dir;
 };

Modified: branches/SAMBA_4_0/source/ntvfs/ntvfs.h
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/ntvfs.h	2006-05-01 22:53:29 UTC (rev 15386)
+++ branches/SAMBA_4_0/source/ntvfs/ntvfs.h	2006-05-01 23:03:32 UTC (rev 15387)
@@ -223,7 +223,7 @@
 struct ntvfs_async_state {
 	struct ntvfs_async_state *prev, *next;
 	/* the async handling infos */
-	uint_t state;
+	unsigned int state;
 	void *private_data;
 	void (*send_fn)(struct ntvfs_request *);
 	NTSTATUS status;

Modified: branches/SAMBA_4_0/source/ntvfs/simple/svfs.h
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/simple/svfs.h	2006-05-01 22:53:29 UTC (rev 15386)
+++ branches/SAMBA_4_0/source/ntvfs/simple/svfs.h	2006-05-01 23:03:32 UTC (rev 15387)
@@ -13,7 +13,7 @@
 };
 
 struct svfs_dir {
-	uint_t count;
+	unsigned int count;
 	char *unix_dir;
 	struct svfs_dirfile {
 		char *name;
@@ -30,6 +30,6 @@
 struct search_state {
 	struct search_state *next, *prev;
 	uint16_t handle;
-	uint_t current_index;
+	unsigned int current_index;
 	struct svfs_dir *dir;
 };

Modified: branches/SAMBA_4_0/source/param/loadparm.h
===================================================================
--- branches/SAMBA_4_0/source/param/loadparm.h	2006-05-01 22:53:29 UTC (rev 15386)
+++ branches/SAMBA_4_0/source/param/loadparm.h	2006-05-01 23:03:32 UTC (rev 15387)
@@ -49,7 +49,7 @@
 	void *ptr;
 	BOOL (*special)(const char *, char **);
 	const struct enum_list *enum_list;
-	uint_t flags;
+	unsigned int flags;
 	union {
 		BOOL bvalue;
 		int ivalue;

Modified: branches/SAMBA_4_0/source/rpc_server/config.mk
===================================================================
--- branches/SAMBA_4_0/source/rpc_server/config.mk	2006-05-01 22:53:29 UTC (rev 15386)
+++ branches/SAMBA_4_0/source/rpc_server/config.mk	2006-05-01 23:03:32 UTC (rev 15387)
@@ -209,8 +209,8 @@
 [MODULE::dcerpc_server]
 INIT_FUNCTION = server_service_rpc_init
 SUBSYSTEM = service
-#PUBLIC_HEADERS = dcerpc_server.h
-PRIVATE_PROTO_HEADER = dcerpc_server_proto.h
+PUBLIC_HEADERS = dcerpc_server.h
+PUBLIC_PROTO_HEADER = dcerpc_server_proto.h
 OBJ_FILES = \
 		dcerpc_server.o \
 		dcerpc_sock.o \



More information about the samba-cvs mailing list