[Fedora-directory-commits] ldapserver/ldap/servers/plugins/chainingdb cb.h, 1.4, 1.5 cb_abandon.c, 1.4, 1.5 cb_acl.c, 1.4, 1.5 cb_add.c, 1.5, 1.6 cb_bind.c, 1.5, 1.6 cb_cleanup.c, 1.4, 1.5 cb_close.c, 1.4, 1.5 cb_compare.c, 1.5, 1.6 cb_config.c, 1.5, 1.6 cb_conn_stateless.c, 1.5, 1.6 cb_controls.c, 1.7, 1.8 cb_debug.c, 1.4, 1.5 cb_delete.c, 1.5, 1.6 cb_init.c, 1.5, 1.6 cb_instance.c, 1.6, 1.7 cb_modify.c, 1.5, 1.6 cb_modrdn.c, 1.5, 1.6 cb_monitor.c, 1.5, 1.6 cb_schema.c, 1.4, 1.5 cb_search.c, 1.6, 1.7 cb_size.c, 1.4, 1.5 cb_start.c, 1.4, 1.5 cb_temp.c, 1.4, 1.5 cb_test.c, 1.5, 1.6 cb_unbind.c, 1.4, 1.5 cb_utils.c, 1.6, 1.7 cbdllmain.c, 1.4, 1.5

Noriko Hosoi (nhosoi) fedora-directory-commits at redhat.com
Fri Nov 10 23:44:58 UTC 2006


Author: nhosoi

Update of /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv30269/ldap/servers/plugins/chainingdb

Modified Files:
	cb.h cb_abandon.c cb_acl.c cb_add.c cb_bind.c cb_cleanup.c 
	cb_close.c cb_compare.c cb_config.c cb_conn_stateless.c 
	cb_controls.c cb_debug.c cb_delete.c cb_init.c cb_instance.c 
	cb_modify.c cb_modrdn.c cb_monitor.c cb_schema.c cb_search.c 
	cb_size.c cb_start.c cb_temp.c cb_test.c cb_unbind.c 
	cb_utils.c cbdllmain.c 
Log Message:
Resolves: #214533
Summary: configure needs to support --with-fhs (Comment #6)
Changes: Added the following include next to the end of the copyright block.
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+



Index: cb.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb.h	19 Apr 2005 22:07:29 -0000	1.4
+++ cb.h	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #ifndef CBHFILE
 #define CBHFILE
 


Index: cb_abandon.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_abandon.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_abandon.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_abandon.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_acl.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_acl.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_acl.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_acl.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_add.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_add.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_add.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_add.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_bind.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_bind.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_bind.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_bind.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 static void


Index: cb_cleanup.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_cleanup.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_cleanup.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_cleanup.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h" 
 
 /*


Index: cb_close.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_close.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_close.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_close.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_compare.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_compare.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_compare.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_compare.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_config.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_config.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_config.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_config.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 #include <errno.h>
 


Index: cb_conn_stateless.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_conn_stateless.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_conn_stateless.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_conn_stateless.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_controls.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_controls.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- cb_controls.c	1 Sep 2006 21:25:07 -0000	1.7
+++ cb_controls.c	10 Nov 2006 23:44:50 -0000	1.8
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_debug.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_debug.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_debug.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_debug.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*
  * cb_debug.c - debugging-related code for Chaining backend
  */


Index: cb_delete.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_delete.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_delete.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_delete.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_init.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_init.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_init.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_init.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 Slapi_PluginDesc chainingdbdesc = { CB_PLUGIN_NAME,


Index: cb_instance.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_instance.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- cb_instance.c	11 Apr 2006 02:14:39 -0000	1.6
+++ cb_instance.c	10 Nov 2006 23:44:50 -0000	1.7
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 #include "plstr.h"
 


Index: cb_modify.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_modify.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_modify.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_modify.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 static void cb_remove_illegal_mods(cb_backend_instance * inst, LDAPMod **mods);


Index: cb_modrdn.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_modrdn.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_modrdn.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_modrdn.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_monitor.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_monitor.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_monitor.c	11 Apr 2006 02:14:39 -0000	1.5
+++ cb_monitor.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 extern cb_instance_config_info cb_the_instance_config[];


Index: cb_schema.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_schema.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_schema.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_schema.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 void cb_eliminate_illegal_attributes(cb_backend_instance * inst, Slapi_Entry * e) {


Index: cb_search.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_search.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- cb_search.c	5 Oct 2006 21:14:01 -0000	1.6
+++ cb_search.c	10 Nov 2006 23:44:50 -0000	1.7
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_size.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_size.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_size.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_size.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 int


Index: cb_start.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_start.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_start.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_start.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 int 


Index: cb_temp.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_temp.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_temp.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_temp.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /*


Index: cb_test.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_test.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cb_test.c	19 Apr 2005 22:07:29 -0000	1.5
+++ cb_test.c	10 Nov 2006 23:44:50 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 int cb_back_test( Slapi_PBlock *pb )


Index: cb_unbind.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_unbind.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cb_unbind.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cb_unbind.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 int


Index: cb_utils.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cb_utils.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- cb_utils.c	31 Aug 2006 22:52:06 -0000	1.6
+++ cb_utils.c	10 Nov 2006 23:44:50 -0000	1.7
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 /* return the rootdn configured in the server */


Index: cbdllmain.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/chainingdb/cbdllmain.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cbdllmain.c	19 Apr 2005 22:07:29 -0000	1.4
+++ cbdllmain.c	10 Nov 2006 23:44:50 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include "cb.h"
 
 #ifdef _WIN32




More information about the Fedora-directory-commits mailing list