pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/openssl Fix a typo that caused us not to chec...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/031a66fe883e
branches:  trunk
changeset: 485681:031a66fe883e
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Sat Dec 18 17:14:22 2004 +0000

description:
Fix a typo that caused us not to check the correct header for the presence
of "des_cblock".  This fixes PR pkg/28703.

diffstat:

 security/openssl/builtin.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r cc137b5151e8 -r 031a66fe883e security/openssl/builtin.mk
--- a/security/openssl/builtin.mk       Sat Dec 18 17:14:18 2004 +0000
+++ b/security/openssl/builtin.mk       Sat Dec 18 17:14:22 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: builtin.mk,v 1.8 2004/12/14 19:24:29 jlam Exp $
+# $NetBSD: builtin.mk,v 1.9 2004/12/18 17:14:22 jlam Exp $
 
 _OPENSSL_PKGSRC_PKGNAME=       openssl-0.9.6m
 _OPENSSL_OPENSSLV_H=           /usr/include/openssl/opensslv.h
@@ -193,7 +193,7 @@
        if ${TEST} -f "$$odes_old_h"; then                              \
                ${ECHO_BUILDLINK_MSG} "<openssl/des.h> supports old DES API."; \
                exit 0;                                                 \
-       elif ${GREP} -q "des_cblock" "$$ossl_h" 2>/dev/null; then       \
+       elif ${GREP} -q "des_cblock" "$$odes_h" 2>/dev/null; then       \
                ${ECHO_BUILDLINK_MSG} "<openssl/des.h> supports old DES API."; \
                exit 0;                                                 \
        elif ${TEST} -f "$$des_h" -a -f "$$odes_h"; then                \



Home | Main Index | Thread Index | Old Index