]> git.sur5r.net Git - openldap/commitdiff
Fixed gcc 4.3 compile issues
authorRalf Haferkamp <ralf@openldap.org>
Wed, 7 Nov 2007 11:01:03 +0000 (11:01 +0000)
committerRalf Haferkamp <ralf@openldap.org>
Wed, 7 Nov 2007 11:01:03 +0000 (11:01 +0000)
contrib/ldapc++/examples/urlTest.cpp
contrib/ldapc++/src/LDAPAttribute.cpp
contrib/ldapc++/src/LDAPAttributeList.cpp
contrib/ldapc++/src/LDAPBindRequest.cpp
contrib/ldapc++/src/LDAPExtRequest.cpp
contrib/ldapc++/src/LDAPModList.cpp
contrib/ldapc++/src/LDAPResult.cpp
contrib/ldapc++/src/StringList.cpp

index e1ab2a0dae0014fcbb3d75cbefd3342db229050b..b0157cb907fa6a91780614c4d13e2004bd585372 100644 (file)
@@ -1,5 +1,6 @@
 #include <LDAPUrl.h>
 #include <LDAPException.h>
+#include <cstdlib>
 #include <iostream>
 
 int main(int argc, char *argv[]) {
index 6671414344e5dc21f93a36809ecc6f494d55718e..2717d9ba979c54b70892788b452b590623ff07d9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2007, OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -12,7 +12,7 @@
 
 
 #include <ldap.h> 
-//#include <ctype.h>
+#include <cstdlib>
 
 #include "debug.h"
 #include "StringList.h"
index 235fef3a205d9b248cc782e8d06f638fd78c68c3..25fee71a96d6f55ef341f2f9f44e4fbc085c8165 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000-2002, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2007, OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -13,6 +13,8 @@
 #include "LDAPAsynConnection.h"
 #include "LDAPMessage.h"
 
+#include <cstdlib>
+
 using namespace std;
 
 // little helper function for doing case insensitve string comparison
index eae3983b318f9ca250f387d499f5e332a6f81237..26bf869506faadd70f2adbfc3081b3acbeea6375 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2007, OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -10,6 +10,8 @@
 #include "LDAPBindRequest.h"
 #include "LDAPException.h"
 
+#include <cstdlib>
+
 using namespace std;
 
 LDAPBindRequest::LDAPBindRequest(const LDAPBindRequest& req) :
index b7f54eeecd3b6899bb1347c2cbd3b4edd4396961..c4896a8ac887c8f4076005207e1f2d025664dd05 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2007, OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -12,6 +12,8 @@
 #include "LDAPException.h"
 #include "LDAPResult.h"
 
+#include <cstdlib>
+
 using namespace std;
 
 LDAPExtRequest::LDAPExtRequest(const LDAPExtRequest& req) :
index a7674eb381a419433fa0ab096725f0f5579dacfe..5450079cce5fb4f508224904835cba0d1439cebc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2007, OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -7,6 +7,8 @@
 #include "LDAPModList.h"
 #include "debug.h"
 
+#include <cstdlib>
+
 using namespace std;
 
 LDAPModList::LDAPModList(){
index 5a3b2e48e370c6d86263ebf124d24ed0fbb9fa12..202d4fdec112cbdbf5678f0f83d59da468518907 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2007, OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -10,6 +10,8 @@
 #include "LDAPRequest.h"
 #include "LDAPException.h"
 
+#include <cstdlib>
+
 using namespace std;
 
 LDAPResult::LDAPResult(const LDAPRequest *req, LDAPMessage *msg) : 
index 1778cac027ae4ac409c0b58f859140dedd30a29f..6fee0bd411e9414903104b6cf06a5a86cd074122 100644 (file)
@@ -1,11 +1,13 @@
 /*
- * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2007, OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
 #include "StringList.h"
 #include "debug.h"
 
+#include <cstdlib>
+
 using namespace std;
 
 StringList::StringList(){