Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Aug 2000 13:23:27 -0700 (PDT)
From:      Kris Kennaway <kris@FreeBSD.org>
To:        Udo Schweigert <ust@cert.siemens.de>
Cc:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject:   Re: cvs commit: src/secure/lib/libcrypto Makefile src/secure/lib/librsaintl Makefile src/secure/lib/libssl Makefile
Message-ID:  <Pine.BSF.4.21.0008201321210.24903-100000@freefall.freebsd.org>
In-Reply-To: <20000820202904.A40559@alaska.cert.siemens.de>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 20 Aug 2000, Udo Schweigert wrote:

> The patch avoiding this is:
> 
> --- Makefile.orig	Sun Aug 20 19:46:29 2000
> +++ Makefile	Sun Aug 20 20:15:45 2000
> @@ -183,7 +183,7 @@
>  	pem/pem2.h pkcs12/pkcs12.h pkcs7/pkcs7.h rand/rand.h rc2/rc2.h \
>  	rc4/rc4.h rc5/rc5.h ripemd/ripemd.h rsa/rsa.h stack/safestack.h \
>  	sha/sha.h stack/stack.h tmdiff.h txt_db/txt_db.h x509/x509.h \
> -	x509/x509_vfy.h x509v3/x509v3.h
> +	x509/x509_vfy.h x509v3/x509v3.h evp/evp.h
>  
>  .if defined(MAKE_IDEA) && ${MAKE_IDEA} == YES
>  HDRS+=	idea/idea.h

Well, that patch is wrong because:

.if !defined(MAKE_IDEA) || ${MAKE_IDEA} != YES
        sed '/^#ifndef NO_IDEA$$/,/^#endif$$/d' ${LCRYPTO_SRC}/evp/evp.h >
\
            ${.OBJDIR}/evp.h.new
        ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
            ${.OBJDIR}/evp.h.new ${DESTDIR}/usr/include/openssl/evp.h
.else
        ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
            ${LCRYPTO_SRC}/evp/evp.h ${DESTDIR}/usr/include/openssl/evp.h
.endif

Were you trying to install with MAKE_IDEA or without?

Kris

--
In God we Trust -- all others must submit an X.509 certificate.
    -- Charles Forsythe <forsythe@alum.mit.edu>



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0008201321210.24903-100000>