118 | | ---- |
119 | | (THIS WE DON'T THINK IS NECESSARY ANYMORE and we didn't do it) |
120 | | I had to comment out the lines as seen below, lines 159 and 166 in your mingw*\include\c++\4.4.6\cwchar |
121 | | {{{ |
122 | | //using ::swprintf; |
123 | | //using ::vswprintf; |
124 | | }}} |
125 | | ---- |
126 | | |
127 | | ---- |
128 | | We don't think this is necessary either |
129 | | If you get errors about g++ and libstdc++ moved try this |
130 | | If you are runnning gcc 4.4.0+ and you get complaints about link g++ you probably need to do this too. Changing |
131 | | file: mingw*\i686-w64-mingw32\lib32\libstdc++.la |
132 | | |
133 | | {{{ |
134 | | |
135 | | library_names='libstdc++.dll.a' |
136 | | }}} |
137 | | |
138 | | |
139 | | to |
140 | | |
141 | | {{{ |
142 | | #library_names='libstdc++.dll.a' |
143 | | library_names='libstdc++.a' |
144 | | }}} |
145 | | ---- |