|
|
Author: jra
Date: 2007-04-06 19:38:35 +0000 (Fri, 06 Apr 2007)
New Revision: 22108
WebSVN:
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22108
Log:
Fix from <don.mccall@xxxxxx> to try and fix the HPUX builds.
Jeremy.
Modified:
branches/SAMBA_3_0/source/include/includes.h
branches/SAMBA_3_0_25/source/include/includes.h
Changeset:
Modified: branches/SAMBA_3_0/source/include/includes.h
===================================================================
--- branches/SAMBA_3_0/source/include/includes.h 2007-04-06 19:17:15 UTC
(rev 22107)
+++ branches/SAMBA_3_0/source/include/includes.h 2007-04-06 19:38:35 UTC
(rev 22108)
@@ -178,8 +178,8 @@
* HP LDAP-UX Integration products' LDAP libraries.
*/
#ifndef ber_tag_t
-typedef unsigned int ber_tag_t;
-typedef unsigned int ber_int_t;
+typedef unsigned long ber_tag_t;
+typedef int ber_int_t;
#endif
#endif /* HPUX */
#ifndef LBER_USE_DER
Modified: branches/SAMBA_3_0_25/source/include/includes.h
===================================================================
--- branches/SAMBA_3_0_25/source/include/includes.h 2007-04-06 19:17:15 UTC
(rev 22107)
+++ branches/SAMBA_3_0_25/source/include/includes.h 2007-04-06 19:38:35 UTC
(rev 22108)
@@ -178,8 +178,8 @@
* HP LDAP-UX Integration products' LDAP libraries.
*/
#ifndef ber_tag_t
-typedef unsigned int ber_tag_t;
-typedef unsigned int ber_int_t;
+typedef unsigned long ber_tag_t;
+typedef int ber_int_t;
#endif
#endif /* HPUX */
#ifndef LBER_USE_DER
|
|