Re: [openssl.org #186] [PATCH] Makefile.org GNU ld detection
So, did the patch get put in, or was it useless? -chris "Richard Levitte via RT" <[EMAIL PROTECTED]> writes: > [[EMAIL PROTECTED] - Thu Oct 10 23:29:14 2002]: > > > a question which was never CC'd to me. Also I'm not sure what is > the > > meaning of these two entries: > > > > Tue Aug 13 17:52:03 2002 > > jaenicke - Milestone 0.9.6h added > > > > Tue Aug 13 17:52:13 2002 > > jaenicke - Subsystem Build added > > Oh, they're just keywords (kind of attributes) that were added to > the entry. We use that to classify the reports we get. > > -- > Richard Levitte __ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
Re: [openssl.org #186] Ticket Resolved
Hi I just went to the RT URL you sent me, and I'm not clear on what actually happened with my request. At some point someone posted a question which was never CC'd to me. Also I'm not sure what is the meaning of these two entries: Tue Aug 13 17:52:03 2002 jaenicke - Milestone 0.9.6h added Tue Aug 13 17:52:13 2002 jaenicke - Subsystem Build added -chris "Richard Levitte via RT" <[EMAIL PROTECTED]> writes: > According to our records, your request has been resolved. If you have any > further questions or concerns, please respond to this message. __ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
[openssl.org #186] [PATCH] Makefile.org GNU ld detection
Here's a patch that fixes the DETECT_GNU_LD code in Makefile.org when building on a Sun box with GCC 2.95.2 and higher. Yes the timestamp is a few months old, but the patch applies cleanly to openssl-0.9.6e/Makefile.org Please let me know if this is not your preferred format for receiving patches. -chris *** Makefile.org.orig Wed Mar 20 13:37:25 2002 --- Makefile.orgWed Mar 20 13:42:38 2002 *** *** 263,267 done ! DETECT_GNU_LD=${CC} -v 2>&1 | grep '^gcc' >/dev/null 2>&1 && \ collect2=`gcc -print-prog-name=collect2 2>&1` && \ [ -n "$$collect2" ] && \ --- 263,267 done ! DETECT_GNU_LD=`${CC} -print-prog-name=ld` --version 2>&1 | grep '^GNU' >/dev/null 2>&1 && \ collect2=`gcc -print-prog-name=collect2 2>&1` && \ [ -n "$$collect2" ] && \ __ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED] __ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]