svn commit: r202982 - in head: lib usr.bin usr.sbin

Pyun YongHyeon yongari at FreeBSD.org
Mon Jan 25 18:52:47 UTC 2010


Author: yongari
Date: Mon Jan 25 18:52:47 2010
New Revision: 202982
URL: http://svn.freebsd.org/changeset/base/202982

Log:
  Connect smbfs related libraries and tool on sparc64.
  
  Reviewed by:	marius

Modified:
  head/lib/Makefile
  head/usr.bin/Makefile
  head/usr.sbin/Makefile

Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile	Mon Jan 25 18:50:58 2010	(r202981)
+++ head/lib/Makefile	Mon Jan 25 18:52:47 2010	(r202982)
@@ -119,6 +119,10 @@ _libvgl=	libvgl
 _libsmb=	libsmb
 .endif
 
+.if ${MACHINE_ARCH} == "sparc64"
+_libsmb=	libsmb
+.endif
+
 .if ${MK_OPENSSL} != "no"
 _libmp=		libmp
 .endif

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Mon Jan 25 18:50:58 2010	(r202981)
+++ head/usr.bin/Makefile	Mon Jan 25 18:52:47 2010	(r202982)
@@ -390,4 +390,8 @@ _smbutil=	smbutil
 _smbutil=	smbutil
 .endif
 
+.if ${MACHINE_ARCH} == "sparc64"
+_smbutil=	smbutil
+.endif
+
 .include <bsd.subdir.mk>

Modified: head/usr.sbin/Makefile
==============================================================================
--- head/usr.sbin/Makefile	Mon Jan 25 18:50:58 2010	(r202981)
+++ head/usr.sbin/Makefile	Mon Jan 25 18:52:47 2010	(r202982)
@@ -512,6 +512,7 @@ _ofwdump=	ofwdump
 
 .if ${MACHINE_ARCH} == "sparc64"
 _eeprom=	eeprom
+_mount_smbfs=	mount_smbfs
 _ofwdump=	ofwdump
 .endif
 


More information about the svn-src-all mailing list