[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re[2]: [wput] problems with @ in ftp password



On Sun, 17 Oct 2004 09:38:58 +0200 Hagen Fritsch
<hagen@itooktheredpill.dyndns.org> wrote:

[Added hagen@ to the CC-recipient, not sure if your reply-to headshot@ was
intentional]

> The problem is fixed in 0.4.1. Get it from 
> itooktheredpill.dyndns.org/wput/wput-0.4.1.exe

Thanks a lot, it works fine now. I tried the sources using MSVC6, here are
some of the things I came across (please bear with me if you already know
of these and/or are solved).

--- I get an error in src/socket.c concerning undefined EINTR, the
following fixed it (also occurred in MSVC8) :

[sorry, no "diff -u" output :( ]

30a31,34
> /* for EINTR under MSVC */
> #if defined(_MSC_VER) && !defined(__MWERKS__)
> #include <errno.h>
> #endif

(MWERKS = CodeWarrior, which also defines _MSC_VER and I don't know if it
has errno.h or not).

After this it compiles&links&runs fine.


---
if it's not much of a packaging problem, you could drop some of
the files in src/msvcpp : the ncb, opt, plg and dsw file. The ncb contains
project caching (and some personal settings). The .opt contains things such
as the cmdline params passed to the app when running from within the IDE,
but it's not used in this case. The .dsw can be removed if there's only one
.dsp in it (but it doesn't hurt much in this case). And the plg is a build
log file.


---
Note of warning: In the default config.h, PACKAGE_STRING and
PACKAGE_TARNAME contain references to 0.3.6.

Thanks a lot,
Dimitri