On Tue, Jan 6, 2009 at 7:04 PM, Austin English austinenglish@gmail.com wrote:
Adds a note discouraging use of UNIX paths, since there's seems to have been a rash of it in recent bug reports.
If we don't recommend it, and usually advise against it, why not just remove that line from the README?
On Tue, Jan 6, 2009 at 9:07 PM, James Hawkins truiken@gmail.com wrote:
On Tue, Jan 6, 2009 at 7:04 PM, Austin English austinenglish@gmail.com wrote:
Adds a note discouraging use of UNIX paths, since there's seems to have been a rash of it in recent bug reports.
If we don't recommend it, and usually advise against it, why not just remove that line from the README?
-- James Hawkins
I sent a patch for that a while back, and it was not accepted. I'm assuming Alexandre wants to keep it for some reason...
"Austin English" austinenglish@gmail.com writes:
On Tue, Jan 6, 2009 at 9:07 PM, James Hawkins truiken@gmail.com wrote:
On Tue, Jan 6, 2009 at 7:04 PM, Austin English austinenglish@gmail.com wrote:
Adds a note discouraging use of UNIX paths, since there's seems to have been a rash of it in recent bug reports.
If we don't recommend it, and usually advise against it, why not just remove that line from the README?
I sent a patch for that a while back, and it was not accepted. I'm assuming Alexandre wants to keep it for some reason...
The problem is not Unix paths, it's usually that the app expects the current directory to be the app directory. You have the same issue if you use a Windows path. If there are really issues caused by argv[0] being a Unix path and not just the wrong directory that can be fixed.
Alexandre Julliard wrote:
"Austin English" austinenglish@gmail.com writes:
On Tue, Jan 6, 2009 at 9:07 PM, James Hawkins truiken@gmail.com wrote:
On Tue, Jan 6, 2009 at 7:04 PM, Austin English austinenglish@gmail.com wrote:
Adds a note discouraging use of UNIX paths, since there's seems to have been a rash of it in recent bug reports.
If we don't recommend it, and usually advise against it, why not just remove that line from the README?
I sent a patch for that a while back, and it was not accepted. I'm assuming Alexandre wants to keep it for some reason...
The problem is not Unix paths, it's usually that the app expects the current directory to be the app directory. You have the same issue if you use a Windows path. If there are really issues caused by argv[0] being a Unix path and not just the wrong directory that can be fixed.
For years Borland been stating in their documents that argv[0] always contains full path to the executable. And many programs written in Boarland C++ / Delphi relay on that.
Vitaliy.
Vitaliy Margolen wine-devel@kievinfo.com writes:
Alexandre Julliard wrote:
The problem is not Unix paths, it's usually that the app expects the current directory to be the app directory. You have the same issue if you use a Windows path. If there are really issues caused by argv[0] being a Unix path and not just the wrong directory that can be fixed.
For years Borland been stating in their documents that argv[0] always contains full path to the executable. And many programs written in Boarland C++ / Delphi relay on that.
Their documents are wrong since argv[0] is determined by the parent process. Anyway, do you have a specific bug report for this?
On Wed, Jan 7, 2009 at 7:31 AM, Alexandre Julliard julliard@winehq.org wrote:
Vitaliy Margolen wine-devel@kievinfo.com writes:
Alexandre Julliard wrote:
The problem is not Unix paths, it's usually that the app expects the current directory to be the app directory. You have the same issue if you use a Windows path. If there are really issues caused by argv[0] being a Unix path and not just the wrong directory that can be fixed.
For years Borland been stating in their documents that argv[0] always contains full path to the executable. And many programs written in Boarland C++ / Delphi relay on that.
Their documents are wrong since argv[0] is determined by the parent process. Anyway, do you have a specific bug report for this?
-- Alexandre Julliard julliard@winehq.org
I'll have to look around for some. I doubt it was an UNIX path issue, but rather 'current directory != app directory', which shows up pretty often in the forums. Would you rather a note saying something like: + Note: This method is not recommended, since many Win32 applications + depend on the current directory being the application directory, and may + crash or have other buggy behavior otherwise.