[Fedora-directory-commits] ldapserver/ldap/servers/plugins/acl acl.c, 1.7, 1.8 acl.h, 1.4, 1.5 acl_ext.c, 1.5, 1.6 aclanom.c, 1.5, 1.6 acldllmain.c, 1.5, 1.6 acleffectiverights.c, 1.5, 1.6 aclgroup.c, 1.4, 1.5 aclinit.c, 1.5, 1.6 acllas.c, 1.6, 1.7 acllist.c, 1.4, 1.5 aclparse.c, 1.5, 1.6 aclplugin.c, 1.4, 1.5 aclproxy.c, 1.5, 1.6 aclutil.c, 1.6, 1.7

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


Author: nhosoi

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

Modified Files:
	acl.c acl.h acl_ext.c aclanom.c acldllmain.c 
	acleffectiverights.c aclgroup.c aclinit.c acllas.c acllist.c 
	aclparse.c aclplugin.c aclproxy.c aclutil.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: acl.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/acl.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- acl.c	19 May 2006 02:37:18 -0000	1.7
+++ acl.c	10 Nov 2006 23:44:49 -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	"acl.h"
 
 /****************************************************************************


Index: acl.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/acl.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- acl.h	19 Apr 2005 22:07:28 -0000	1.4
+++ acl.h	10 Nov 2006 23:44:49 -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
+
 /*****************************************************************************
 * acl.h
 *


Index: acl_ext.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/acl_ext.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- acl_ext.c	19 Apr 2005 22:07:28 -0000	1.5
+++ acl_ext.c	10 Nov 2006 23:44:49 -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 	"acl.h"
 
 static void acl__done_aclpb ( struct acl_pblock *aclpb );


Index: aclanom.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/aclanom.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- aclanom.c	19 Apr 2005 22:07:28 -0000	1.5
+++ aclanom.c	10 Nov 2006 23:44:49 -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 	"acl.h"
 
 /************************************************************************


Index: acldllmain.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/acldllmain.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- acldllmain.c	11 Apr 2006 02:14:38 -0000	1.5
+++ acldllmain.c	10 Nov 2006 23:44:49 -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 "acl.h"
 
 #ifdef _WIN32


Index: acleffectiverights.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/acleffectiverights.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- acleffectiverights.c	19 Apr 2005 22:07:28 -0000	1.5
+++ acleffectiverights.c	10 Nov 2006 23:44:49 -0000	1.6
@@ -35,6 +35,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include "acl.h"
 
 /* safer than doing strcat unprotected */


Index: aclgroup.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/aclgroup.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- aclgroup.c	19 Apr 2005 22:07:28 -0000	1.4
+++ aclgroup.c	10 Nov 2006 23:44:49 -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 "acl.h"
 
 /***************************************************************************


Index: aclinit.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/aclinit.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- aclinit.c	19 Apr 2005 22:07:28 -0000	1.5
+++ aclinit.c	10 Nov 2006 23:44:49 -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    "acl.h"
 
 static int 		__aclinit__RegisterLases(void);


Index: acllas.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/acllas.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- acllas.c	11 Apr 2006 02:14:38 -0000	1.6
+++ acllas.c	10 Nov 2006 23:44:49 -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	<ipfstruct.h>
 #include 	"acl.h"


Index: acllist.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/acllist.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- acllist.c	19 Apr 2005 22:07:28 -0000	1.4
+++ acllist.c	10 Nov 2006 23:44:49 -0000	1.5
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 /************************************************************************
  *
  * ACLLIST


Index: aclparse.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/aclparse.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- aclparse.c	19 Apr 2005 22:07:28 -0000	1.5
+++ aclparse.c	10 Nov 2006 23:44:49 -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 "acl.h"
 
 /****************************************************************************/


Index: aclplugin.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/aclplugin.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- aclplugin.c	19 Apr 2005 22:07:28 -0000	1.4
+++ aclplugin.c	10 Nov 2006 23:44:49 -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
+
 /*
  * There are 3 ACL PLUGIN points
  * PREOP, POSTOP and ACL plugin


Index: aclproxy.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/aclproxy.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- aclproxy.c	31 Aug 2006 22:52:06 -0000	1.5
+++ aclproxy.c	10 Nov 2006 23:44:49 -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 "acl.h"
 
 #define BEGIN do {


Index: aclutil.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/acl/aclutil.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- aclutil.c	19 Apr 2005 22:07:28 -0000	1.6
+++ aclutil.c	10 Nov 2006 23:44:49 -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	"acl.h"
 
 /**************************************************************************




More information about the Fedora-directory-commits mailing list