svn commit: samba r23296 - in branches/SAMBA_4_0/source/lib/replace: .

metze at samba.org metze at samba.org
Fri Jun 1 18:36:56 GMT 2007


Author: metze
Date: 2007-06-01 18:36:55 +0000 (Fri, 01 Jun 2007)
New Revision: 23296

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23296

Log:
HP-UX 11.11 also gets sizeof(uint64_t) == 4
so try the same fix as for 11.00

metze
Modified:
   branches/SAMBA_4_0/source/lib/replace/libreplace_cc.m4


Changeset:
Modified: branches/SAMBA_4_0/source/lib/replace/libreplace_cc.m4
===================================================================
--- branches/SAMBA_4_0/source/lib/replace/libreplace_cc.m4	2007-06-01 16:06:40 UTC (rev 23295)
+++ branches/SAMBA_4_0/source/lib/replace/libreplace_cc.m4	2007-06-01 18:36:55 UTC (rev 23296)
@@ -66,7 +66,8 @@
 		fi
 		if test "`uname -r`" = "B.11.11"; then
 			AC_MSG_WARN([Enabling HPUX 11.11 header bug workaround])
-			CFLAGS="$CFLAGS -D_LARGEFILE64_SUPPORT -D__LP64__ -DO_LARGEFILE=04000"
+			#CFLAGS="$CFLAGS -D_LARGEFILE64_SUPPORT -D__LP64__ -DO_LARGEFILE=04000"
+			CFLAGS="$CFLAGS -Dpread=pread64 -Dpwrite=pwrite64"
 		fi
 		if test "`uname -r`" = "B.11.23"; then
 			AC_MSG_WARN([Enabling HPUX 11.23 machine/sys/getppdp.h bug workaround])



More information about the samba-cvs mailing list