Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Apr 2003 18:28:06 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 30019 for review
Message-ID:  <200304290128.h3T1S6oA084659@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=30019

Change 30019 by peter@peter_daintree on 2003/04/28 18:27:45

	Avoid libdisk, and libstand for now.  libdisk is actually easy since
	we can just clone the i386 bits.  libstand is more of an issue since
	we use i386 boot code, which means we need a toolchain that can
	produce i386 code...

Affected files ...

.. //depot/projects/hammer/lib/Makefile#6 edit

Differences ...

==== //depot/projects/hammer/lib/Makefile#6 (text+ko) ====

@@ -29,7 +29,7 @@
 	libipx libisc libmenu ${_libmilter} ${_libmp} ${_libncp} \
 	libnetgraph libopie libpam libpanel libpcap ${_libpthread} \
 	${_libsm} ${_libsmb} ${_libsmdb} ${_libsmutil} \
-	libstand ${_libtelnet} libufs libugidfw libusbhid ${_libvgl} \
+	${_libstand} ${_libtelnet} libufs libugidfw libusbhid ${_libvgl} \
 	libwrap libxpg4 liby libz
 
 .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
@@ -70,10 +70,14 @@
 _compat=	compat
 .endif
 
-.if ${MACHINE_ARCH} != "powerpc"
+.if ${MACHINE_ARCH} != "powerpc" && ${MACHINE_ARCH} != "amd64"
 _libdisk=libdisk
 .endif
 
+.if ${MACHINE_ARCH} != "amd64"
+_libstand=libstand
+.endif
+
 .if defined(RELEASEDIR) || \
     (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberos5)) || \
     defined(NOCRYPT) || \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200304290128.h3T1S6oA084659>