[Fedora-directory-commits] ldapserver/ldap/cm/newinst ux-config.h, 1.6, 1.7 ux-dialog.h, 1.5, 1.6 ux-dsalib_dn.c, 1.4, 1.5 ux-config.cc, 1.10, 1.11 ux-dialog.cc, 1.10, 1.11 ux-guesses.cc, 1.5, 1.6

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


Author: nhosoi

Update of /cvs/dirsec/ldapserver/ldap/cm/newinst
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv30269/ldap/cm/newinst

Modified Files:
	ux-config.h ux-dialog.h ux-dsalib_dn.c ux-config.cc 
	ux-dialog.cc ux-guesses.cc 
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: ux-config.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/cm/newinst/ux-config.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ux-config.h	19 Apr 2005 22:07:21 -0000	1.6
+++ ux-config.h	10 Nov 2006 23:44:40 -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
+
 /*********************************************************************
 **
 **
@@ -48,6 +53,16 @@
 **
 ** HISTORY:
 ** $Log$
+** Revision 1.7  2006/11/10 23:44:40  nhosoi
+** 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
+** +
+**
 ** Revision 1.6  2005/04/19 22:07:21  nkinder
 ** Fixed licensing typo
 **


Index: ux-dialog.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/cm/newinst/ux-dialog.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ux-dialog.h	6 Nov 2006 20:39:01 -0000	1.5
+++ ux-dialog.h	10 Nov 2006 23:44:40 -0000	1.6
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #ifndef _UX_DIALOG_H_
 #define _UX_DIALOG_H_
 


Index: ux-dsalib_dn.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/cm/newinst/ux-dsalib_dn.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ux-dsalib_dn.c	19 Apr 2005 22:07:21 -0000	1.4
+++ ux-dsalib_dn.c	10 Nov 2006 23:44:40 -0000	1.5
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #ifdef __cplusplus
 extern "C" {
 #endif


Index: ux-config.cc
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/cm/newinst/ux-config.cc,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ux-config.cc	29 Mar 2006 19:45:37 -0000	1.10
+++ ux-config.cc	10 Nov 2006 23:44:40 -0000	1.11
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*********************************************************************
 **
 ** NAME:


Index: ux-dialog.cc
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/cm/newinst/ux-dialog.cc,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ux-dialog.cc	6 Nov 2006 20:39:01 -0000	1.10
+++ ux-dialog.cc	10 Nov 2006 23:44:40 -0000	1.11
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*********************************************************************
 **
 ** NAME:


Index: ux-guesses.cc
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/cm/newinst/ux-guesses.cc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ux-guesses.cc	19 Apr 2005 22:07:21 -0000	1.5
+++ ux-guesses.cc	10 Nov 2006 23:44:40 -0000	1.6
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 /* Print guesses of host and domain name as made by the setup SDK. */
 
 
@@ -43,6 +48,16 @@
 /* $RCSfile$ $Revision$ $Date$ $State$ */
 /*
  * $Log$
+ * Revision 1.6  2006/11/10 23:44:40  nhosoi
+ * 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
+ * +
+ *
  * Revision 1.5  2005/04/19 22:07:21  nkinder
  * Fixed licensing typo
  *




More information about the Fedora-directory-commits mailing list