[Fedora-directory-commits] ldapserver/ldap/servers/plugins/retrocl dllmain.c, 1.4, 1.5 linktest.c, 1.4, 1.5 retrocl.c, 1.5, 1.6 retrocl.h, 1.5, 1.6 retrocl_cn.c, 1.4, 1.5 retrocl_create.c, 1.4, 1.5 retrocl_po.c, 1.5, 1.6 retrocl_rootdse.c, 1.4, 1.5 retrocl_trim.c, 1.6, 1.7

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


Author: nhosoi

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

Modified Files:
	dllmain.c linktest.c retrocl.c retrocl.h retrocl_cn.c 
	retrocl_create.c retrocl_po.c retrocl_rootdse.c retrocl_trim.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: dllmain.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/retrocl/dllmain.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dllmain.c	19 Apr 2005 22:07:34 -0000	1.4
+++ dllmain.c	10 Nov 2006 23:45:18 -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
+
  /*
  * Microsoft Windows specifics for LIBRETROCL DLL
  */


Index: linktest.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/retrocl/linktest.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- linktest.c	19 Apr 2005 22:07:34 -0000	1.4
+++ linktest.c	10 Nov 2006 23:45:18 -0000	1.5
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 /* This is a test program.  Not linked into the shared library */
 
 #include "retrocl.h"


Index: retrocl.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/retrocl/retrocl.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- retrocl.c	19 Apr 2005 22:07:34 -0000	1.5
+++ retrocl.c	10 Nov 2006 23:45:18 -0000	1.6
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 /*
  * Requires that create_instance.c have added a plugin entry similar to:
 


Index: retrocl.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/retrocl/retrocl.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- retrocl.h	19 Apr 2005 22:07:34 -0000	1.5
+++ retrocl.h	10 Nov 2006 23:45:18 -0000	1.6
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #ifndef _H_RETROCL
 #define _H_RETROCL 1
 


Index: retrocl_cn.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/retrocl/retrocl_cn.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- retrocl_cn.c	19 Apr 2005 22:07:34 -0000	1.4
+++ retrocl_cn.c	10 Nov 2006 23:45:18 -0000	1.5
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include "retrocl.h"
 
 static changeNumber retrocl_internal_cn = 0;


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


Index: retrocl_po.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/retrocl/retrocl_po.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- retrocl_po.c	19 Apr 2005 22:07:34 -0000	1.5
+++ retrocl_po.c	10 Nov 2006 23:45:18 -0000	1.6
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include "retrocl.h"
 
 static int


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


Index: retrocl_trim.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/retrocl/retrocl_trim.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- retrocl_trim.c	19 Apr 2005 22:07:34 -0000	1.6
+++ retrocl_trim.c	10 Nov 2006 23:45:18 -0000	1.7
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 
 #include "retrocl.h"
 




More information about the Fedora-directory-commits mailing list