summaryrefslogtreecommitdiff
path: root/usr.bin/telnet
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2013-06-18 20:27:21 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2013-06-18 20:27:21 +0000
commitc89acd82646f92a2c33c339d389b2795c057ec89 (patch)
tree59e03bebbb8027400f0cb4494ad5561d4561bca2 /usr.bin/telnet
parent270c4a24d2fbf0cf6650367c0bf1d8140d6b02d0 (diff)
Shuffle library link order to appease the static arch deities.
Diffstat (limited to 'usr.bin/telnet')
-rw-r--r--usr.bin/telnet/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/telnet/Makefile b/usr.bin/telnet/Makefile
index 152e1caadac..16ab684bc44 100644
--- a/usr.bin/telnet/Makefile
+++ b/usr.bin/telnet/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.25 2013/06/17 19:23:33 robert Exp $
+# $OpenBSD: Makefile,v 1.26 2013/06/18 20:27:20 miod Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -46,8 +46,8 @@ SRCS= authenc.c commands.c main.c network.c ring.c sys_bsd.c telnet.c \
.if (${KERBEROS5:L} == "yes")
CFLAGS+=-DENCRYPTION -DAUTHENTICATION -DKRB5 -DDES_ENCRYPTION
DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO}
-LDADD+= -lkrb5 -lasn1 -lcrypto
-LDADD+= -lhx509 -lwind -lroken -lcom_err -lpthread -lheimbase
+LDADD+= -lkrb5 -lhx509 -lasn1 -lcrypto
+LDADD+= -lwind -lroken -lcom_err -lpthread -lheimbase
SRCS+= kerberos5.c enc_des.c
.endif