summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-09-02 14:46:20 +0000
committerbde <bde@FreeBSD.org>1998-09-02 14:46:20 +0000
commit89d62e66b9ed12bdd53e1a370e58f1d3c03737b4 (patch)
treee9ffbd2238ddf3d3094fa405bd10f5e63e27b017 /usr.bin
parent83594b3e3ad15071ea891a01e18902bd8d3e260f (diff)
downloadFreeBSD-src-89d62e66b9ed12bdd53e1a370e58f1d3c03737b4.zip
FreeBSD-src-89d62e66b9ed12bdd53e1a370e58f1d3c03737b4.tar.gz
Removed a buggy ifdef for not linking libmd explicitly. Explicit
linkage is needed for the NOSHARED=YES case, so it is simplest to never depend on the automagic linkage for elf shared libraries. Reviewed by: jdp
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/su/Makefile12
1 files changed, 3 insertions, 9 deletions
diff --git a/usr.bin/su/Makefile b/usr.bin/su/Makefile
index 7aa9d36..798b67d 100644
--- a/usr.bin/su/Makefile
+++ b/usr.bin/su/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 7/19/93
-# $Id$
+# $Id: Makefile,v 1.19 1998/08/30 17:02:51 gpalmer Exp $
PROG= su
SRCS= su.c
@@ -11,8 +11,8 @@ DPADD+= ${LIBUTIL}
.if !defined(LC_AUTH)
COPTS+= -DSKEY
-LDADD+= -lskey -lcrypt
-DPADD+= ${LIBSKEY} ${LIBCRYPT}
+LDADD+= -lskey -lmd -lcrypt
+DPADD+= ${LIBSKEY} ${LIBMD} ${LIBCRYPT}
.endif
.if defined(WHEELSU)
@@ -28,12 +28,6 @@ LDADD+= -lkrb -ldes
DISTRIBUTION= krb
.endif
-# Do we have to provide an implementation for libskey.so?
-.if ${OBJFORMAT} != elf || ${MACHINE_ARCH} == "alpha"
-LDADD+= -lmd
-DPADD+= ${LIBMD}
-.endif
-
BINOWN= root
BINMODE=4555
INSTALLFLAGS=-fschg
OpenPOWER on IntegriCloud