Fix build error for -current non-US users.

PR:		16711
This commit is contained in:
Kris Kennaway 2000-02-15 06:58:44 +00:00
parent a990e62056
commit 88278c687f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25846

View file

@ -50,10 +50,10 @@ SSL_LIBS= -L${OPENSSLLIB} -lssl -lcrypto
SED_CMD+= -e "s,undef USE_SSL,define USE_SSL,g"
.if defined(OPENSSL_RSAREF)
EXTRA_SSL_LIBS= -lRSAglue -L${LOCALBASE}/lib -lrsaref
EXTRA_SSL_LIBS= -lRSAglue -lrsaref
.endif
MAKE_FLAGS+= DEFS="${SSL_CFLAGS} -I${LOCALBASE}/include" \
LIBS="${SSL_LIBS} ${EXTRA_SSL_LIBS}"
LIBS="${SSL_LIBS} ${EXTRA_SSL_LIBS} -L${LOCALBASE}/lib"
.else
MAKE_FLAGS+= DEFS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib"
.endif