aboutsummaryrefslogtreecommitdiff
path: root/lang/icc/files/patch-bin::icc
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2005-03-06 15:08:26 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2005-03-06 15:08:26 +0000
commit80b69054dbd412728d6a9b71cfa5062201e0099f (patch)
treea0a036d2fcb7a8f20a15f83a1e3139ba56e36095 /lang/icc/files/patch-bin::icc
parent04279c87a83ab826e3e6094ec62008dee7bcde92 (diff)
downloadports-80b69054dbd412728d6a9b71cfa5062201e0099f.tar.gz
ports-80b69054dbd412728d6a9b71cfa5062201e0099f.zip
- update to 8.1.028
- 5.x got the header fix too, don't install replacement headers there [1] - allow to override GXX_ROOT [2] Note: you may see "as: Illegal seek" while compiling with icc (a simple test didn't revealed the same message with icpc). I don't know the reason for it, but the resulting executable seems to work, so I commit the update. Thanks to: marius [1] Requested by: mi [2]
Notes
Notes: svn path=/head/; revision=130451
Diffstat (limited to 'lang/icc/files/patch-bin::icc')
-rw-r--r--lang/icc/files/patch-bin::icc32
1 files changed, 6 insertions, 26 deletions
diff --git a/lang/icc/files/patch-bin::icc b/lang/icc/files/patch-bin::icc
index 3e8be91a7406..c839ac96d8b3 100644
--- a/lang/icc/files/patch-bin::icc
+++ b/lang/icc/files/patch-bin::icc
@@ -1,37 +1,17 @@
---- bin/icc.orig Tue Dec 9 19:55:19 2003
-+++ bin/icc Tue Dec 9 20:03:34 2003
-@@ -1,6 +1,12 @@
+--- bin/icc.orig Sun Mar 6 15:40:09 2005
++++ bin/icc Sun Mar 6 15:44:30 2005
+@@ -1,5 +1,11 @@
#!/bin/sh
--if [ -z INTEL_LICENSE_FILE ]
+ICC_LOCALBASE=%%ICC_LOCALBASE%%
+export ICC_LOCALBASE
+
-+GXX_ROOT=<INSTALLDIR>/lib
++GXX_ROOT=${GXX_ROOT:-<INSTALLDIR>/lib}
+export GXX_ROOT
+
-+if [ -z "$INTEL_LICENSE_FILE" ]
+ if [ -z "$INTEL_LICENSE_FILE" ]
then
- INTEL_LICENSE_FILE=<INSTALLDIR>/licenses;
- else
-@@ -8,7 +14,7 @@
- fi
- export INTEL_LICENSE_FILE;
-
--if [ -z LD_LIBRARY_PATH ]
-+if [ -z "$LD_LIBRARY_PATH" ]
- then
- LD_LIBRARY_PATH=<INSTALLDIR>/lib;
- else
-@@ -16,7 +22,7 @@
- fi
- export LD_LIBRARY_PATH;
-
--if [ -z PATH ]
-+if [ -z "$PATH" ]
- then
- PATH=<INSTALLDIR>/bin;
- else
+ INTEL_LICENSE_FILE="<INSTALLDIR>/licenses";
@@ -24,11 +30,46 @@
fi
export PATH;