Issue 17602 - IRIX: SGI's STL doesn't have stl/utility (or need it so far)
Summary: IRIX: SGI's STL doesn't have stl/utility (or need it so far)
Status: CLOSED FIXED
Alias: None
Product: porting
Classification: Code
Component: code (show other issues)
Version: OOo 1.1 RC
Hardware: SGI IRIX
: P3 Trivial (vote)
Target Milestone: OOo 1.1.1
Assignee: Martin Hollmichel
QA Contact: issues@porting
URL:
Keywords:
Depends on:
Blocks: 809
  Show dependency tree
 
Reported: 2003-07-30 04:34 UTC by nickb
Modified: 2004-02-05 12:39 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description nickb 2003-07-30 04:34:03 UTC
Compiling i18nutil/source/utility/widthfolding.cxx failed due to missing 
stl/utility. Removing that include allowed compiling to succeed.

I did this:
diff -u -r1.2 widthfolding.cxx
--- widthfolding.cxx    24 Apr 2003 12:26:04 -0000      1.2
+++ widthfolding.cxx    30 Jul 2003 03:36:09 -0000
@@ -60,7 +60,9 @@
  ************************************************************************/

 // prevent internal compiler error with MSVC6SP3
+#if !defined (SGI_STL)
 #include <stl/utility>
+#endif
 #include <i18nutil/widthfolding.hxx>
 #include <i18nutil/x_rtl_ustring.h>
 #include "widthfolding_data.h"

And added SGI_STL to CDEF's in the IRIX specific makefile (although, shouldn't
using ./configure --with-sgi-stl do this?).
Comment 1 nickb 2003-07-30 04:34:33 UTC
Added dep
Comment 2 Martin Hollmichel 2003-08-07 15:56:56 UTC
set target milestone to 1.1.1
Comment 3 sander_traveling 2003-10-16 19:47:29 UTC
I'm prett sure this is just another "extraneous stl/ in #include"
issue, so I commited a patch that just removes teh stl/ -> please
reopen if that isn't enough on IRIX. 

Comment 4 nickb 2003-10-17 00:06:19 UTC
Yes, thats correct, its the extra stl/... interesting that I didn't
need it tho!
Comment 5 Martin Hollmichel 2004-02-05 12:28:54 UTC
mark as verified.
Comment 6 Martin Hollmichel 2004-02-05 12:39:59 UTC
closing issue, feel free to reopen in case a problem is left.