[Fedora-directory-commits] ldapserver/lib/ldaputil cert.c, 1.4, 1.5 dbconf.c, 1.5, 1.6 encode.c, 1.4, 1.5 errors.c, 1.4, 1.5 init.c, 1.7, 1.8 ldapauth.c, 1.6, 1.7 certmap.c, 1.6, 1.7 ldaputili.h, 1.4, 1.5 vtable.c, 1.4, 1.5 ldapdb.c, 1.5, 1.6

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


Author: nhosoi

Update of /cvs/dirsec/ldapserver/lib/ldaputil
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv30269/lib/ldaputil

Modified Files:
	cert.c dbconf.c encode.c errors.c init.c ldapauth.c certmap.c 
	ldaputili.h vtable.c ldapdb.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: cert.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/cert.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cert.c	19 Apr 2005 22:07:45 -0000	1.4
+++ cert.c	10 Nov 2006 23:46:00 -0000	1.5
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include <string.h>
 #include <malloc.h>
 


Index: dbconf.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/dbconf.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dbconf.c	19 Apr 2005 22:07:45 -0000	1.5
+++ dbconf.c	10 Nov 2006 23:46:00 -0000	1.6
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include <string.h>
 #include <malloc.h>
 #include <ctype.h>


Index: encode.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/encode.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- encode.c	19 Apr 2005 22:07:45 -0000	1.4
+++ encode.c	10 Nov 2006 23:46:00 -0000	1.5
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include <malloc.h>
 #include <string.h>
 #include <ldaputil/certmap.h>


Index: errors.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/errors.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- errors.c	19 Apr 2005 22:07:45 -0000	1.4
+++ errors.c	10 Nov 2006 23:46:00 -0000	1.5
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include <ldaputil/errors.h>
 #include <ldaputil/certmap.h>
 


Index: init.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/init.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- init.c	11 Apr 2006 02:14:53 -0000	1.7
+++ init.c	10 Nov 2006 23:46:00 -0000	1.8
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include <string.h>
 #include <prlink.h>
 #include <prio.h>


Index: ldapauth.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/ldapauth.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ldapauth.c	11 Apr 2006 02:14:53 -0000	1.6
+++ ldapauth.c	10 Nov 2006 23:46:00 -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
+
 /*
  * ldapauth.cpp: Implements LDAP integration in the web server.
  * 


Index: certmap.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/certmap.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- certmap.c	11 Apr 2006 02:14:53 -0000	1.6
+++ certmap.c	10 Nov 2006 23:46:00 -0000	1.7
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>


Index: ldaputili.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/ldaputili.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ldaputili.h	19 Apr 2005 22:07:45 -0000	1.4
+++ ldaputili.h	10 Nov 2006 23:46:00 -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 _LDAPU_LDAPUTILI_H
 #define _LDAPU_LDAPUTILI_H
 


Index: vtable.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/vtable.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vtable.c	19 Apr 2005 22:07:45 -0000	1.4
+++ vtable.c	10 Nov 2006 23:46:00 -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 "ldaputili.h"
 #include <ldap.h>
 #ifdef USE_LDAP_SSL


Index: ldapdb.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/lib/ldaputil/ldapdb.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ldapdb.c	10 Nov 2006 01:34:10 -0000	1.5
+++ ldapdb.c	10 Nov 2006 23:46:00 -0000	1.6
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #ifndef DONT_USE_LDAP_SSL
 #define USE_LDAP_SSL
 #endif




More information about the Fedora-directory-commits mailing list