diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2002-09-17 12:52:06 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2002-09-17 12:52:06 +0000 |
commit | 5ca74f56d71ada8833389be504840549618bb5a8 (patch) | |
tree | 89c7817803da1ee92604032288824f6f3c850f71 /devel/stlport/files/patch-stlport::stlcomp.h | |
parent | - C++ support: fix to work also on -current, work around broken exception (diff) |
Patch to be able to make a slave port for Intels C/C++ compiler.
Submitted by: marius@alchemy.franken.de
Approved by: Paul Marquis <pmarquis@pobox.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=66503
Diffstat (limited to 'devel/stlport/files/patch-stlport::stlcomp.h')
-rw-r--r-- | devel/stlport/files/patch-stlport::stlcomp.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/stlport/files/patch-stlport::stlcomp.h b/devel/stlport/files/patch-stlport::stlcomp.h new file mode 100644 index 000000000000..14b6a3cd1855 --- /dev/null +++ b/devel/stlport/files/patch-stlport::stlcomp.h @@ -0,0 +1,12 @@ +--- stlport/config/stlcomp.h.orig Wed Jul 24 02:21:28 2002 ++++ stlport/config/stlcomp.h Wed Jul 24 02:21:16 2002 +@@ -103,6 +103,9 @@ + # elif defined (__FCC_VERSION) + /* Fujutsu Compiler, v4.0 assumed */ + # include <config/stl_fujitsu.h> ++/* Intel(R) C++ Compiler */ ++# elif defined (__ICC) ++# include <config/stl_icc.h> + # else + /* Unable to identify the compiler, issue error diagnostic. + * Edit <config/stl_mycomp.h> to set STLport up for your compiler. */ |