PERFORCE change 30019 for review
Peter Wemm
peter at FreeBSD.org
Mon Apr 28 18:28:08 PDT 2003
http://perforce.freebsd.org/chv.cgi?CH=30019
Change 30019 by peter at 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) || \
More information about the p4-projects
mailing list