[Fedora-directory-commits] ldapserver/ldap/servers/plugins/syntaxes bin.c, 1.4, 1.5 ces.c, 1.4, 1.5 cis.c, 1.4, 1.5 debug.c, 1.4, 1.5 dllmain.c, 1.5, 1.6 dn.c, 1.4, 1.5 int.c, 1.4, 1.5 phonetic.c, 1.4, 1.5 sicis.c, 1.4, 1.5 string.c, 1.6, 1.7 syntax.h, 1.4, 1.5 tel.c, 1.4, 1.5 value.c, 1.5, 1.6

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


Author: nhosoi

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

Modified Files:
	bin.c ces.c cis.c debug.c dllmain.c dn.c int.c phonetic.c 
	sicis.c string.c syntax.h tel.c value.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: bin.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/bin.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bin.c	19 Apr 2005 22:07:35 -0000	1.4
+++ bin.c	10 Nov 2006 23:45:31 -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
+
 /* bin.c - bin syntax routines */
 
 /*


Index: ces.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/ces.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ces.c	19 Apr 2005 22:07:35 -0000	1.4
+++ ces.c	10 Nov 2006 23:45:31 -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
+
 /* ces.c - caseexactstring syntax routines */
 
 #include <stdio.h>


Index: cis.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/cis.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cis.c	19 Apr 2005 22:07:35 -0000	1.4
+++ cis.c	10 Nov 2006 23:45:31 -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
+
 /* cis.c - caseignorestring syntax routines */
 
 /*


Index: debug.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/debug.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- debug.c	19 Apr 2005 22:07:35 -0000	1.4
+++ debug.c	10 Nov 2006 23:45:31 -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
+
 /* debug.c - syntax debug stuff */
 
 #include <stdio.h>


Index: dllmain.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/dllmain.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dllmain.c	11 Apr 2006 02:14:43 -0000	1.5
+++ dllmain.c	10 Nov 2006 23:45:31 -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
+
 /*
  * Microsoft Windows specifics for syntax-plugin DLL
  */


Index: dn.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/dn.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dn.c	19 Apr 2005 22:07:35 -0000	1.4
+++ dn.c	10 Nov 2006 23:45:31 -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
+
 /* dn.c - dn syntax routines */
 
 #include <stdio.h>


Index: int.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/int.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- int.c	19 Apr 2005 22:07:35 -0000	1.4
+++ int.c	10 Nov 2006 23:45:31 -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
+
 /* int.c - integer syntax routines */
 
 #include <stdio.h>


Index: phonetic.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/phonetic.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- phonetic.c	19 Apr 2005 22:07:35 -0000	1.4
+++ phonetic.c	10 Nov 2006 23:45:31 -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
+
 /* phonetic.c - routines to do phonetic matching */
 
 #include <stdio.h>


Index: sicis.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/sicis.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sicis.c	19 Apr 2005 22:07:35 -0000	1.4
+++ sicis.c	10 Nov 2006 23:45:31 -0000	1.5
@@ -35,6 +35,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 /*
  * sicis.c - space insensitive string syntax routines.
  *           these strings are also case insensitive.


Index: string.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/string.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- string.c	6 Nov 2006 20:51:30 -0000	1.6
+++ string.c	10 Nov 2006 23:45:31 -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
+
 /* string.c - common string syntax routines */
 
 #include <stdio.h>


Index: syntax.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/syntax.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- syntax.h	19 Apr 2005 22:07:35 -0000	1.4
+++ syntax.h	10 Nov 2006 23:45:31 -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
+
 /* syntax.h - string syntax definitions */
 
 #ifndef _LIBSYNTAX_H_


Index: tel.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/tel.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tel.c	19 Apr 2005 22:07:35 -0000	1.4
+++ tel.c	10 Nov 2006 23:45:31 -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
+
 /* tel.c - telephonenumber syntax routines */
 
 #include <stdio.h>


Index: value.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/syntaxes/value.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- value.c	19 Apr 2005 22:07:35 -0000	1.5
+++ value.c	10 Nov 2006 23:45:31 -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
+
 /* value.c - routines for dealing with values */
 
 #include <stdio.h>




More information about the Fedora-directory-commits mailing list