Luis Lavena
2007-Oct-09 03:52 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
Curt, I''m in the middle of the rebuild process (with p111) and found the issue you''re getting with ruby-odbc (0.9995). The following error, is part of the mkmf.log file: have_library_ex: checking for SQLAllocConnect() in -lodbc32... -------------------- no "cl -nologo -Feconftest -I. -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 -ID:/Users/Developer/code/OpenSource/installer-trunk/downloads/ruby-odbc-0.9995 -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib odbc32.lib oldnames.lib user32.lib advapi32.lib ws2_32.lib -link -libpath:"." -libpath:"D:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib" -stack:0x2000000" conftest.c conftest.obj : error LNK2001: unresolved external symbol _SQLAllocConnect conftest.exe : fatal error LNK1120: 1 unresolved externals checked program was: /* begin */ 1: #define WIN32_LEAN_AND_MEAN 2: #include <winsock2.h> 3: #include <windows.h> 4: #include <sql.h> 5: 6: /*top*/ 7: int main() { return 0; } 8: int t() { void ((*volatile p)()); p = (void ((*)()))SQLAllocConnect; return 0; } /* end */ "cl -nologo -Feconftest -I. -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 -ID:/Users/Developer/code/OpenSource/installer-trunk/downloads/ruby-odbc-0.9995 -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib odbc32.lib oldnames.lib user32.lib advapi32.lib ws2_32.lib -link -libpath:"." -libpath:"D:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib" -stack:0x2000000" conftest.c C:\VC\PSDK-preR2\Include\sqltypes.h(275) : error C2061: syntax error : identifier ''DWORD'' C:\VC\PSDK-preR2\Include\sqltypes.h(276) : error C2061: syntax error : identifier ''Data2'' C:\VC\PSDK-preR2\Include\sqltypes.h(276) : error C2059: syntax error : '';'' C:\VC\PSDK-preR2\Include\sqltypes.h(277) : error C2061: syntax error : identifier ''Data3'' C:\VC\PSDK-preR2\Include\sqltypes.h(277) : error C2059: syntax error : '';'' C:\VC\PSDK-preR2\Include\sqltypes.h(278) : error C2061: syntax error : identifier ''Data4'' C:\VC\PSDK-preR2\Include\sqltypes.h(278) : error C2059: syntax error : '';'' C:\VC\PSDK-preR2\Include\sqltypes.h(278) : error C2059: syntax error : ''['' C:\VC\PSDK-preR2\Include\sqltypes.h(279) : error C2059: syntax error : ''}'' conftest.c(5) : error C2198: ''SQLAllocConnect'' : too few actual parameters checked program was: /* begin */ 1: #include <sql.h> 2: 3: /*top*/ 4: int main() { return 0; } 5: int t() { SQLAllocConnect(); return 0; } /* end */ -------------------- It seems that the test program is including sql.h with its pre-requisite: windows.h Adding it, I''m getting another error: have_library_ex: checking for SQLAllocConnect() in -lodbc32... -------------------- no "cl -nologo -Feconftest -I. -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 -ID:/Users/Developer/code/OpenSource/installer-trunk/downloads/ruby-odbc-0.9995 -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib odbc32.lib oldnames.lib user32.lib advapi32.lib ws2_32.lib -link -libpath:"." -libpath:"D:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib" -stack:0x2000000" conftest.c conftest.obj : error LNK2001: unresolved external symbol _SQLAllocConnect conftest.exe : fatal error LNK1120: 1 unresolved externals checked program was: /* begin */ 1: #define WIN32_LEAN_AND_MEAN 2: #include <winsock2.h> 3: #include <windows.h> 4: #include <windows.h> 5: #include <sql.h> 6: 7: /*top*/ 8: int main() { return 0; } 9: int t() { void ((*volatile p)()); p = (void ((*)()))SQLAllocConnect; return 0; } /* end */ "cl -nologo -Feconftest -I. -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 -ID:/Users/Developer/code/OpenSource/installer-trunk/downloads/ruby-odbc-0.9995 -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib odbc32.lib oldnames.lib user32.lib advapi32.lib ws2_32.lib -link -libpath:"." -libpath:"D:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib" -stack:0x2000000" conftest.c conftest.c(6) : error C2198: ''SQLAllocConnect'' : too few actual parameters checked program was: /* begin */ 1: #include <windows.h> 2: #include <sql.h> 3: 4: /*top*/ 5: int main() { return 0; } 6: int t() { SQLAllocConnect(); return 0; } /* end */ I need to check "too few actual parameters" (the SQLAllocConnect signature) and see what I could do to fix it. But so far, it seems ruby-odbc is too old for latest SDKs... or we are doing something wrong. What was the error you got? -- Luis Lavena Multimedia systems - Leaders are made, they are not born. They are made by hard effort, which is the price which all of us must pay to achieve any goal that is worthwhile. Vince Lombardi
Curt Hibbs
2007-Oct-09 11:00 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
When I gt the error I commented it out of the rake file just to move on and see if I was going to have any other problems -- I hadn''t gone back yet to take a closer look at ruby-odbc. But, I''m pretty sure this is the same error. I upgraded ruby-ocbc for this build to version 0.9995. I haven''t tried yet going back to 0.9994, but I''ll bet this problem was introduced in 0.9995. I build ruby-odbc 0.9994 six months ago for the last release of OCI without any problems. Curt On 10/8/07, Luis Lavena <luislavena at gmail.com> wrote:> > Curt, > > I''m in the middle of the rebuild process (with p111) and found the > issue you''re getting with ruby-odbc (0.9995). > > The following error, is part of the mkmf.log file: > > have_library_ex: checking for SQLAllocConnect() in -lodbc32... > -------------------- no > > "cl -nologo -Feconftest -I. > > -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 > -ID:/Users/Developer/code/OpenSource/installer-trunk/downloads/ruby- > odbc-0.9995 > > -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 > -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib odbc32.lib > oldnames.lib user32.lib advapi32.lib ws2_32.lib -link > -libpath:"." > -libpath:"D:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib" > -stack:0x2000000" > conftest.c > conftest.obj : error LNK2001: unresolved external symbol _SQLAllocConnect > conftest.exe : fatal error LNK1120: 1 unresolved externals > checked program was: > /* begin */ > 1: #define WIN32_LEAN_AND_MEAN > 2: #include <winsock2.h> > 3: #include <windows.h> > 4: #include <sql.h> > 5: > 6: /*top*/ > 7: int main() { return 0; } > 8: int t() { void ((*volatile p)()); p = (void > ((*)()))SQLAllocConnect; return 0; } > /* end */ > > "cl -nologo -Feconftest -I. > > -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 > -ID:/Users/Developer/code/OpenSource/installer-trunk/downloads/ruby- > odbc-0.9995 > > -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 > -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib odbc32.lib > oldnames.lib user32.lib advapi32.lib ws2_32.lib -link > -libpath:"." > -libpath:"D:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib" > -stack:0x2000000" > conftest.c > C:\VC\PSDK-preR2\Include\sqltypes.h(275) : error C2061: syntax error : > identifier ''DWORD'' > C:\VC\PSDK-preR2\Include\sqltypes.h(276) : error C2061: syntax error : > identifier ''Data2'' > C:\VC\PSDK-preR2\Include\sqltypes.h(276) : error C2059: syntax error : '';'' > C:\VC\PSDK-preR2\Include\sqltypes.h(277) : error C2061: syntax error : > identifier ''Data3'' > C:\VC\PSDK-preR2\Include\sqltypes.h(277) : error C2059: syntax error : '';'' > C:\VC\PSDK-preR2\Include\sqltypes.h(278) : error C2061: syntax error : > identifier ''Data4'' > C:\VC\PSDK-preR2\Include\sqltypes.h(278) : error C2059: syntax error : '';'' > C:\VC\PSDK-preR2\Include\sqltypes.h(278) : error C2059: syntax error : ''['' > C:\VC\PSDK-preR2\Include\sqltypes.h(279) : error C2059: syntax error : ''}'' > conftest.c(5) : error C2198: ''SQLAllocConnect'' : too few actual parameters > checked program was: > /* begin */ > 1: #include <sql.h> > 2: > 3: /*top*/ > 4: int main() { return 0; } > 5: int t() { SQLAllocConnect(); return 0; } > /* end */ > > -------------------- > > > It seems that the test program is including sql.h with its > pre-requisite: windows.h > > Adding it, I''m getting another error: > > have_library_ex: checking for SQLAllocConnect() in -lodbc32... > -------------------- no > > "cl -nologo -Feconftest -I. > > -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 > -ID:/Users/Developer/code/OpenSource/installer-trunk/downloads/ruby- > odbc-0.9995 > > -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 > -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib odbc32.lib > oldnames.lib user32.lib advapi32.lib ws2_32.lib -link > -libpath:"." > -libpath:"D:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib" > -stack:0x2000000" > conftest.c > conftest.obj : error LNK2001: unresolved external symbol _SQLAllocConnect > conftest.exe : fatal error LNK1120: 1 unresolved externals > checked program was: > /* begin */ > 1: #define WIN32_LEAN_AND_MEAN > 2: #include <winsock2.h> > 3: #include <windows.h> > 4: #include <windows.h> > 5: #include <sql.h> > 6: > 7: /*top*/ > 8: int main() { return 0; } > 9: int t() { void ((*volatile p)()); p = (void > ((*)()))SQLAllocConnect; return 0; } > /* end */ > > "cl -nologo -Feconftest -I. > > -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 > -ID:/Users/Developer/code/OpenSource/installer-trunk/downloads/ruby- > odbc-0.9995 > > -ID:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib/ruby/1.8/i386-mswin32 > -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib odbc32.lib > oldnames.lib user32.lib advapi32.lib ws2_32.lib -link > -libpath:"." > -libpath:"D:/Users/Developer/code/OpenSource/installer-trunk/ruby/lib" > -stack:0x2000000" > conftest.c > conftest.c(6) : error C2198: ''SQLAllocConnect'' : too few actual parameters > checked program was: > /* begin */ > 1: #include <windows.h> > 2: #include <sql.h> > 3: > 4: /*top*/ > 5: int main() { return 0; } > 6: int t() { SQLAllocConnect(); return 0; } > /* end */ > > > I need to check "too few actual parameters" (the SQLAllocConnect > signature) and see what I could do to fix it. > > But so far, it seems ruby-odbc is too old for latest SDKs... or we are > doing something wrong. > > What was the error you got? > > -- > Luis Lavena > Multimedia systems > - > Leaders are made, they are not born. They are made by hard effort, > which is the price which all of us must pay to achieve any goal that > is worthwhile. > Vince Lombardi > _______________________________________________ > Rubyinstaller-devel mailing list > Rubyinstaller-devel at rubyforge.org > http://rubyforge.org/mailman/listinfo/rubyinstaller-devel >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rubyinstaller-devel/attachments/20071009/a060420d/attachment-0001.html
Luis Lavena
2007-Oct-09 14:39 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
On 10/9/07, Curt Hibbs <curt.hibbs at gmail.com> wrote:> When I gt the error I commented it out of the rake file just to move on and > see if I was going to have any other problems -- I hadn''t gone back yet to > take a closer look at ruby-odbc. But, I''m pretty sure this is the same > error. > > I upgraded ruby-ocbc for this build to version 0.9995. I haven''t tried yet > going back to 0.9994, but I''ll bet this problem was introduced in 0.9995. I > build ruby-odbc 0.9994 six months ago for the last release of OCI without > any problems. >I''ll give it a whirl later today, since I''m leaving office to a customer meeting. I''ll let you know the results. BTW, I''m thinking conducting a anonymous online survey (like the one railsforge ppl started, but it seems down right now). I want to gather more information about the platform (which version of windows), the average user and the commonly used tools with ruby (also if its a gem developer, etc.) That will give us a nice collection of information to analyze and determine the best way to implement the future version of OCI. -- Luis Lavena Multimedia systems - Leaders are made, they are not born. They are made by hard effort, which is the price which all of us must pay to achieve any goal that is worthwhile. Vince Lombardi
Luis Lavena
2007-Oct-11 00:32 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
On 10/9/07, Curt Hibbs <curt.hibbs at gmail.com> wrote:> When I gt the error I commented it out of the rake file just to move on and > see if I was going to have any other problems -- I hadn''t gone back yet to > take a closer look at ruby-odbc. But, I''m pretty sure this is the same > error. > > I upgraded ruby-ocbc for this build to version 0.9995. I haven''t tried yet > going back to 0.9994, but I''ll bet this problem was introduced in 0.9995. I > build ruby-odbc 0.9994 six months ago for the last release of OCI without > any problems. >0.9994 or 0.9995 makes no difference. The problem still exist. The thing is that including sql.h default to ODBC 0x350 (3.5 of ODBC) and according to MSDN documentation, SQLAllocConnect has been deprecated: http://msdn2.microsoft.com/en-us/library//ms714852.aspx Errr... to confusing to get why the linking error is there, even when I''m linking with odbc32.lib "error LNK2001: unresolved external symbol _SQLAllocConnect" Tried with and without SDK set in INCLUDE and LIB, all without success. So far, the only condition failing is: have_library_ex("odbc32", "SQLAllocConnect", "sql.h") I''ll try to find why isn''t finding the function and reply here. -- Luis Lavena Multimedia systems - Leaders are made, they are not born. They are made by hard effort, which is the price which all of us must pay to achieve any goal that is worthwhile. Vince Lombardi
Luis Lavena
2007-Oct-11 01:06 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
On 10/10/07, Luis Lavena <luislavena at gmail.com> wrote:> So far, the only condition failing is: > > have_library_ex("odbc32", "SQLAllocConnect", "sql.h") > > I''ll try to find why isn''t finding the function and reply here. >Found the problem. Example program: /* begin */ #define WIN32_LEAN_AND_MEAN #include <winsock2.h> #include <windows.h> #include <sql.h> /*top*/ int main() { return 0; } int t() { void ((*volatile p)()); p = (void ((*)()))SQLAllocConnect; return 0; } /* end */ FAILS... missing _SQLAllocConnect Removing the WIN32_LEAN_AND_MEAN works... The problem is that WIN32_LEAN_AND_MEAN came from Config::CONFIG[''COMMON_MACROS'']: ruby -v -rrbconfig -e ''puts Config::CONFIG["COMMON_MACROS"]'' ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32] WIN32_LEAN_AND_MEAN Since adding the common macros is part of mkmf.rb, I can''t change that without breaking everything. I''ll post this to Ruby-Core looking for solutions. -- Luis Lavena Multimedia systems - Leaders are made, they are not born. They are made by hard effort, which is the price which all of us must pay to achieve any goal that is worthwhile. Vince Lombardi
Luis Lavena
2007-Oct-11 02:07 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
On 10/10/07, Luis Lavena <luislavena at gmail.com> wrote:> > The problem is that WIN32_LEAN_AND_MEAN came from > Config::CONFIG[''COMMON_MACROS'']: > > ruby -v -rrbconfig -e ''puts Config::CONFIG["COMMON_MACROS"]'' > ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32] > WIN32_LEAN_AND_MEAN > > Since adding the common macros is part of mkmf.rb, I can''t change that > without breaking everything. > > I''ll post this to Ruby-Core looking for solutions. >Done. It seems was added in 1.8.6: D:\Users\Developer>ruby -v -rrbconfig -e ''puts Config::CONFIG["COMMON_MACROS"]'' ruby 1.8.5 (2007-09-24 patchlevel 114) [i386-mswin32] nil D:\Users\Developer>ruby -v -rrbconfig -e ''puts Config::CONFIG["COMMON_MACROS"]'' ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32] WIN32_LEAN_AND_MEAN == I''ll try to find where is defined (guess is part of the makefile). Two options: 1) Raise the attention of Ruby/ODBC developer and find a workaround (need more information about try_func and how to define my own C code). 2) Make Ruby-Core provide more information about the switch, since couldn''t find it. Taking care of this tomorrow. -- Luis Lavena Multimedia systems - Leaders are made, they are not born. They are made by hard effort, which is the price which all of us must pay to achieve any goal that is worthwhile. Vince Lombardi
Curt Hibbs
2007-Oct-11 03:37 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
I still can''t understand why it would have built ok back in March??? Oh well, thanks for looking in to this. Curt On 10/10/07, Luis Lavena <luislavena at gmail.com> wrote:> > On 10/10/07, Luis Lavena <luislavena at gmail.com> wrote: > > > > The problem is that WIN32_LEAN_AND_MEAN came from > > Config::CONFIG[''COMMON_MACROS'']: > > > > ruby -v -rrbconfig -e ''puts Config::CONFIG["COMMON_MACROS"]'' > > ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32] > > WIN32_LEAN_AND_MEAN > > > > Since adding the common macros is part of mkmf.rb, I can''t change that > > without breaking everything. > > > > I''ll post this to Ruby-Core looking for solutions. > > > > Done. > > It seems was added in 1.8.6: > > D:\Users\Developer>ruby -v -rrbconfig -e ''puts > Config::CONFIG["COMMON_MACROS"]'' > ruby 1.8.5 (2007-09-24 patchlevel 114) [i386-mswin32] > nil > > D:\Users\Developer>ruby -v -rrbconfig -e ''puts > Config::CONFIG["COMMON_MACROS"]'' > ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32] > WIN32_LEAN_AND_MEAN > > ==> > I''ll try to find where is defined (guess is part of the makefile). > > Two options: > > 1) Raise the attention of Ruby/ODBC developer and find a workaround > (need more information about try_func and how to define my own C > code). > > 2) Make Ruby-Core provide more information about the switch, since > couldn''t find it. > > Taking care of this tomorrow. > > -- > Luis Lavena > Multimedia systems > - > Leaders are made, they are not born. They are made by hard effort, > which is the price which all of us must pay to achieve any goal that > is worthwhile. > Vince Lombardi > _______________________________________________ > Rubyinstaller-devel mailing list > Rubyinstaller-devel at rubyforge.org > http://rubyforge.org/mailman/listinfo/rubyinstaller-devel >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rubyinstaller-devel/attachments/20071010/4a8e43c7/attachment.html
Luis Lavena
2007-Oct-11 03:45 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
On 10/11/07, Curt Hibbs <curt.hibbs at gmail.com> wrote:> I still can''t understand why it would have built ok back in March??? > > Oh well, thanks for looking in to this. >Curt, is confirmed: Is a problem of 1.8.6 and Platform SDK issues. 1.8.5 didn''t show this since COMMON_MACROS wasn''t set at all. This is the message I sent to Ruby-Core: http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/12584 And Nobu reply: http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/12586 I''ll try that tomorrow since I''m at home right now. Regards, BTW: could you configure the mailing list to just reply to the list? I forget to remove you when I hit the reply button. -- Luis Lavena Multimedia systems - Leaders are made, they are not born. They are made by hard effort, which is the price which all of us must pay to achieve any goal that is worthwhile. Vince Lombardi
Curt Hibbs
2007-Oct-11 13:26 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
On 10/10/07, Luis Lavena <luislavena at gmail.com> wrote:> > On 10/11/07, Curt Hibbs <curt.hibbs at gmail.com> wrote: > > I still can''t understand why it would have built ok back in March??? > > > > Oh well, thanks for looking in to this. > > > > Curt, is confirmed: > > Is a problem of 1.8.6 and Platform SDK issues. > > 1.8.5 didn''t show this since COMMON_MACROS wasn''t set at all. > > This is the message I sent to Ruby-Core: > http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/12584 > > And Nobu reply: > > http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/12586 > > I''ll try that tomorrow since I''m at home right now. > > Regards, > > BTW: could you configure the mailing list to just reply to the list? I > forget to remove you when I hit the reply button.Done! BTW, the admin password for all the OCI mailing lists is "pancakes". Curt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rubyinstaller-devel/attachments/20071011/a2f5ece2/attachment.html
Curt Hibbs
2007-Oct-11 13:31 UTC
[Rubyinstaller-devel] Buildinf OCI and Ruby-ODBC problems?
On 10/11/07, Curt Hibbs <curt.hibbs at gmail.com> wrote:> > On 10/10/07, Luis Lavena <luislavena at gmail.com> wrote: > > > > On 10/11/07, Curt Hibbs <curt.hibbs at gmail.com> wrote: > > > I still can''t understand why it would have built ok back in March??? > > > > > > Oh well, thanks for looking in to this. > > > > > > > Curt, is confirmed: > > > > Is a problem of 1.8.6 and Platform SDK issues. > > > > 1.8.5 didn''t show this since COMMON_MACROS wasn''t set at all. > > > > This is the message I sent to Ruby-Core: > > http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/12584 > > > > And Nobu reply: > > > > http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/12586 > > > > I''ll try that tomorrow since I''m at home right now. > > > > Regards, > > > > BTW: could you configure the mailing list to just reply to the list? I > > forget to remove you when I hit the reply button. > > > Done! BTW, the admin password for all the OCI mailing lists is "pancakes". > >I meant to send that only to Luis. :-( Luis, I just changed the password and I''ll send it to you off list. Curt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rubyinstaller-devel/attachments/20071011/14a8aa01/attachment-0001.html