diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile index 151917080553..9a4adca83c28 100644 --- a/libexec/telnetd/Makefile +++ b/libexec/telnetd/Makefile @@ -30,6 +30,8 @@ LIBTELNET= ${.OBJDIR}/../../lib/libtelnet/libtelnet.a DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} LDADD= -lutil -ltermcap ${LIBTELNET} +# XXX for src/release/picobsd +.if !defined(RELEASE_CRUNCH) .if ${MK_OPENSSL} != "no" SRCS+= authenc.c CFLAGS+= -DAUTHENTICATION -DENCRYPTION @@ -42,5 +44,6 @@ CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBROKEN} ${LIBCOM_ERR} LDADD+= -lkrb5 -lasn1 -lroken -lcom_err .endif +.endif .include diff --git a/usr.sbin/inetd/Makefile b/usr.sbin/inetd/Makefile index 29398714a95d..35f2c222e583 100644 --- a/usr.sbin/inetd/Makefile +++ b/usr.sbin/inetd/Makefile @@ -19,6 +19,7 @@ CFLAGS+= -DINET6 DPADD= ${LIBUTIL} ${LIBWRAP} LDADD= -lutil -lwrap +# XXX for src/release/picobsd .if !defined(RELEASE_CRUNCH) CFLAGS+= -DIPSEC DPADD+= ${LIBIPSEC}