Hi folks,
The next version of the 0.9 TODO is way past due, so I've decided to release it today: http://www.dssd.ca/wine/Wine-0.9-TODO-0.7.html
ChangeLog * Bill finished moving CVS docu from User Guide to Devel Guide (B3) * Alexandre implemented import libraries (D3), finished winebuild (D4) * I fixed header location (mostly done by Alexandre :)) (E9) * Status update from Jaco (C2), and Ender (E7) * Brand new Introduction * New tasks added (D5, D6, D7)
Check it out, it's fun! :)
We still need to double check the latest import lib and winebuild changes on Mingw32. I am going to be swamped for the next week or two.
--- "Dimitrie O. Paun" dpaun@rogers.com wrote:
Hi folks,
The next version of the 0.9 TODO is way past due, so I've decided to release it today: http://www.dssd.ca/wine/Wine-0.9-TODO-0.7.html
ChangeLog
- Bill finished moving CVS docu from User Guide to Devel Guide (B3)
- Alexandre implemented import libraries (D3), finished winebuild (D4)
- I fixed header location (mostly done by Alexandre :)) (E9)
- Status update from Jaco (C2), and Ender (E7)
- Brand new Introduction
- New tasks added (D5, D6, D7)
Check it out, it's fun! :)
-- Dimi.
__________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com
"Steven Edwards" steven_ed4153@yahoo.com wrote:
We still need to double check the latest import lib and winebuild changes on Mingw32. I am going to be swamped for the next week or two.
Alexandre told me that it works for him with binutils 2.13.90. I have tested it under Cygwin and can confirm that it works for me too after latest winebuild import fixes from Alexandre.
Btw, you can suggest ReactOS people to look how handling of import libs via .def files done in Wine and get rid of that ugly .def/.edf stuff.
--- Dmitry Timoshkov dmitry@baikal.ru wrote:
"Steven Edwards" steven_ed4153@yahoo.com wrote:
We still need to double check the latest import lib and winebuild changes on Mingw32. I am going to be swamped for the next week or two.
Alexandre told me that it works for him with binutils 2.13.90. I have tested it under Cygwin and can confirm that it works for me too after latest winebuild import fixes from Alexandre.
Btw, you can suggest ReactOS people to look how handling of import libs via .def files done in Wine and get rid of that ugly .def/.edf stuff.
I will look in to it when I get back from my vacation in a few weeks unless one of the ReactOS guys is interested.
Thanks Steven
__________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com
-----Original Message----- From: Steven Edwards [mailto:steven_ed4153@yahoo.com] Sent: 20. december 2002 17:41 To: Dmitry Timoshkov; dpaun@rogers.com Cc: wine-devel@winehq.com; ros-kernel@reactos.com Subject: [ros-kernel] Re: Wine 0.9 TODO v0.7
--- Dmitry Timoshkov dmitry@baikal.ru wrote:
"Steven Edwards" steven_ed4153@yahoo.com wrote:
We still need to double check the latest import lib and winebuild changes on Mingw32. I am going to be swamped for the next week or two.
Alexandre told me that it works for him with binutils
2.13.90. I have
tested it under Cygwin and can confirm that it works for me
too after
latest winebuild import fixes from Alexandre.
Btw, you can suggest ReactOS people to look how handling of import libs via .def files done in Wine and get rid of that ugly .def/.edf stuff.
I will look in to it when I get back from my vacation in a few weeks unless one of the ReactOS guys is interested.
Thanks Steven
dlltool isn't needed anymore to build dlls. gcc -shared will do the same without any .def/.edf files.
Casper Hornstrup
"Casper Hornstrup" chorns@users.sourceforge.net wrote:
dlltool isn't needed anymore to build dlls. gcc -shared will do the same without any .def/.edf files.
Yes, I know. I was talking about removing stdcall decorations from exported symbols in DLLs which is currently done in ROS by having two sets of .def files (.def and .edf) with and without name decorations. Latest binutils allow to have only one .def file with decorated names. Wine build system utilizes that possibility.