usr/src/lib/openssl/Patches/27-HOSTCC.patch
author Cyril Plisko <cyril.plisko@grigale.com>
Thu, 18 Mar 2010 16:36:00 +0200
changeset 10 612517e396e0
permissions -rw-r--r--
Import sfw build 136 Bugs Fixed ---------- 6514945 webmin still refers to xmemfs usr/sfw/lib/webmin/mount/solaris-lib.pl 6633684 [nvb78] Webmin is not integrated with apache2.2 6641988 [nvb79] Webmin interface for mysql badly configured 6780832 Add SASL support to mutt 6796795 copy text from mutt in gnome-terminal to other application is adding spaces 6799158 Update SER to link the MySQL 5.1 instead of the MySQL 4.0 6804425 Mutt doesn't have header cache support 6809910 Webmin 1.170 (Solaris 10): newaliases is not called when clicking Delete on sendmail/edit_alias.cgi 6828622 libnet Makefile invokes gcc directly, it should use $(CC) instead. 6903750 mutt fails to read MH-style mail dirs 6909860 /usr/man/man4/ipmiconsole.conf.4 refer to nonexistent man/man5 man pages in osol_129 and osol_132 6914573 webmin bundled with Solaris vulnerable to three separate XSS vulnerab ilities 6920693 trousers should use newer software 6922082 CVE-2010-0393 - CUPS lppasswd utility vulnerability 6924985 CVE-2010-0302: incomplete fix for CUPS CR#6900557(CVE-2009-3553) 6927042 memleaks in libtspi 6930830 upgrade OpenSSL to 0.9.8m (and fix CVE-2009-3555) 6932600 completion failure with zfs destroy, some problems with _dladm 6933290 After pkg image-update and reboot, tomcat service falls into maintenance 6933533 PSARC/2009/232 implementation breaks nmap 6933649 webmin contains Sun's branding, which should be removed 6934512 Envelope is not redrawn in compose mode after return from the message edit
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     1
--- openssl-0.9.8m/fips/Makefile	Thu Mar  4 15:12:12 2010
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     2
+++ openssl-0.9.8m/fips/Makefile	Thu Mar  4 15:10:38 2010
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     3
@@ -123,7 +123,7 @@
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     4
 		$(FIPSLIBDIR)fipscanister.o ../libcrypto.a $(EX_LIBS)
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     5
 # this is executed only when linking with external fipscanister.o
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     6
 fips_standalone_sha1$(EXE_EXT):	sha/fips_standalone_sha1.c
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     7
-	if [ -z $(HOSTCC) ] ; then \
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     8
+	if [ -z "$(HOSTCC)" ] ; then \
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     9
 		$(CC) $(CFLAGS) -DFIPSCANISTER_O -o $@ sha/fips_standalone_sha1.c $(FIPSLIBDIR)fipscanister.o $(EX_LIBS) ; \
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    10
 	else \
612517e396e0 Import sfw build 136
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    11
 		$(HOSTCC) $(HOSTCFLAGS) -o $ $@ -I../include -I../crypto sha/fips_standalone_sha1.c ../crypto/sha/sha1dgst.c ; \