diff options
author | davide <davide@FreeBSD.org> | 2013-06-28 21:00:08 +0000 |
---|---|---|
committer | davide <davide@FreeBSD.org> | 2013-06-28 21:00:08 +0000 |
commit | 0dd1d9c578ddc35507ac2072c5062f5d57c53147 (patch) | |
tree | e1591b3e71dfbd12dfea7bc7669be4a10541da31 /lib/Makefile | |
parent | a0c5d96b0afd2c5fdf7e4ffe2c4c54b832a5dbf2 (diff) | |
download | FreeBSD-src-0dd1d9c578ddc35507ac2072c5062f5d57c53147.zip FreeBSD-src-0dd1d9c578ddc35507ac2072c5062f5d57c53147.tar.gz |
- Trim an unused and bogus Makefile for mount_smbfs.
- Reconnect with some minor modifications, in particular now selsocket()
internals are adapted to use sbintime units after recent'ish calloutng
switch.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index d28d55b..71fe4d2 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -102,6 +102,7 @@ SUBDIR= ${SUBDIR_ORDERED} \ ${_librtld_db} \ ${_libsdp} \ ${_libsm} \ + ${_libsmb} \ ${_libsmdb} \ ${_libsmutil} \ libstand \ @@ -205,6 +206,7 @@ _libypclnt= libypclnt .endif .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" +_libsmb= libsmb _libvgl= libvgl _libproc= libproc _librtld_db= librtld_db @@ -216,6 +218,7 @@ _libvmmapi= libvmmapi .if ${MACHINE_CPUARCH} == "ia64" _libefi= libefi +_libsmb= libsmb .endif .if ${MACHINE_CPUARCH} == "mips" @@ -226,6 +229,11 @@ _librtld_db= librtld_db .if ${MACHINE_CPUARCH} == "powerpc" _libproc= libproc _librtld_db= librtld_db +_libsmb= libsmb +.endif + +.if ${MACHINE_CPUARCH} == "sparc64" +_libsmb= libsmb .endif .if ${MK_OPENSSL} != "no" |