[Fedora-directory-commits] ldapserver/ldap/servers/plugins/passthru passthru.h, 1.4, 1.5 ptbind.c, 1.4, 1.5 ptconfig.c, 1.5, 1.6 ptconn.c, 1.4, 1.5 ptdebug.c, 1.4, 1.5 ptdllmain.c, 1.5, 1.6 ptpreop.c, 1.5, 1.6 ptutil.c, 1.4, 1.5

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


Author: nhosoi

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

Modified Files:
	passthru.h ptbind.c ptconfig.c ptconn.c ptdebug.c ptdllmain.c 
	ptpreop.c ptutil.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: passthru.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/passthru.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- passthru.h	19 Apr 2005 22:07:31 -0000	1.4
+++ passthru.h	10 Nov 2006 23:45:04 -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
+
 /*
  * passthru.h - Pass Through Authentication shared definitions
  *


Index: ptbind.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/ptbind.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ptbind.c	19 Apr 2005 22:07:31 -0000	1.4
+++ ptbind.c	10 Nov 2006 23:45:04 -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
+
 /*
  * ptbind.c - LDAP bind-related code for Pass Through Authentication
  *


Index: ptconfig.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/ptconfig.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ptconfig.c	19 Apr 2005 22:07:31 -0000	1.5
+++ ptconfig.c	10 Nov 2006 23:45:04 -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
+
 /*
  * ptconfig.c - configuration-related code for Pass Through Authentication
  *


Index: ptconn.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/ptconn.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ptconn.c	19 Apr 2005 22:07:31 -0000	1.4
+++ ptconn.c	10 Nov 2006 23:45:04 -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
+
 /*
  * ptconn.c - LDAP connection-related code for Pass Through Authentication
  *


Index: ptdebug.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/ptdebug.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ptdebug.c	19 Apr 2005 22:07:31 -0000	1.4
+++ ptdebug.c	10 Nov 2006 23:45:04 -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
+
 /*
  * ptdebug.c - debugging-related code for Pass Through Authentication
  *


Index: ptdllmain.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/ptdllmain.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ptdllmain.c	11 Apr 2006 02:14:41 -0000	1.5
+++ ptdllmain.c	10 Nov 2006 23:45:04 -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 "ldap.h"
 #include "lber.h"
 #include "passthru.h"


Index: ptpreop.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/ptpreop.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ptpreop.c	8 Feb 2006 18:59:22 -0000	1.5
+++ ptpreop.c	10 Nov 2006 23:45:04 -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
+
 /*
  * ptpreop.c - bind pre-operation plugin for Pass Through Authentication
  *


Index: ptutil.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/passthru/ptutil.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ptutil.c	19 Apr 2005 22:07:31 -0000	1.4
+++ ptutil.c	10 Nov 2006 23:45:04 -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
+
 /*
  * ptutil.c - utility functions for Pass Through Authentication
  *




More information about the Fedora-directory-commits mailing list