Bug 55214

Summary: Maintainer-update: samba-libsmbclient build fix for amd64
Product: Ports & Packages Reporter: Koop Mast <einekoai>
Component: Individual Port(s)Assignee: freebsd-ports-bugs (Nobody) <ports-bugs>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
patch-configure
none
Makefile.diff none

Description Koop Mast 2003-08-03 20:30:11 UTC
	2 patches to fix building on amd64.	

	Noticed by: bento & kris

Fix: --- include/includes.h.orig	Tue Jul  1 22:44:25 2003
+++ include/includes.h	Sun Aug  3 12:05:23 2003
@@ -1248,10 +1248,14 @@
 
 
 /* we need to use __va_copy() on some platforms */
-#ifdef HAVE_VA_COPY
+#ifdef HAVE__VA_COPY
 #define VA_COPY(dest, src) __va_copy(dest, src)
 #else
+#ifdef HAVE_VA_COPY
+#define VA_COPY(dest, src) va_copy(dest, src)
+#else
 #define VA_COPY(dest, src) (dest) = (src)
+#endif
 #endif
 
 #ifndef HAVE_TIMEGM
--- patch-include_includes.h ends here ---
Comment 1 Joe Marcus Clarke freebsd_committer freebsd_triage 2003-08-03 20:59:32 UTC
State Changed
From-To: open->closed

Committed, thanks!  You should consider making similar modifications to 
configure.in, then submit your patches to the Samba developers for  
integration into their tree.