added patch submitted by Guido de Jong

svn path=/trunk/; revision=3481
This commit is contained in:
Steven Edwards 2002-09-09 22:27:57 +00:00
parent 4b6d4d065b
commit 8d67244770
3 changed files with 73 additions and 73 deletions

View file

@ -225,10 +225,10 @@
#endif #endif
#if USE_SIO #if USE_SIO
# include "sio\sio.h" /* Library header. */ # include "sio/sio.h" /* Library header. */
#endif #endif
#include "Strn\Strn.h" /* Library header. */ #include "Strn/Strn.h" /* Library header. */
#include "ncftp.h" /* Library header. */ #include "ncftp.h" /* Library header. */
#include "util.h" #include "util.h"

View file

@ -1,5 +1,5 @@
# #
# ncftp 3.0.3 for reactos ported from MS-Vc++ # ncftp 3.0.3 for reactos ported from MS-Vc
# sedwards 12-20-01 # sedwards 12-20-01
PATH_TO_TOP=../../../reactos PATH_TO_TOP=../../../reactos
@ -18,79 +18,79 @@ TARGET_CLEAN = \
sio/*.o Strn/*.o libncftp/*.o ncftp/*.o sio/*.o Strn/*.o libncftp/*.o ncftp/*.o
OBJECTS_SIO = \ OBJECTS_SIO = \
sio\PRead.o \ sio/PRead.o \
sio\PWrite.o \ sio/PWrite.o \
sio\SAcceptA.o \ sio/SAcceptA.o \
sio\SAcceptS.o \ sio/SAcceptS.o \
sio\SBind.o \ sio/SBind.o \
sio\SClose.o \ sio/SClose.o \
sio\SConnect.o \ sio/SConnect.o \
sio\SConnectByName.o \ sio/SConnectByName.o \
sio\SNew.o \ sio/SNew.o \
sio\SRead.o \ sio/SRead.o \
sio\SReadline.o \ sio/SReadline.o \
sio\SRecv.o \ sio/SRecv.o \
sio\SRecvfrom.o \ sio/SRecvfrom.o \
sio\SRecvmsg.o \ sio/SRecvmsg.o \
sio\SSelect.o \ sio/SSelect.o \
sio\SSend.o \ sio/SSend.o \
sio\SSendto.o \ sio/SSendto.o \
sio\SSendtoByName.o \ sio/SSendtoByName.o \
sio\SWrite.o \ sio/SWrite.o \
sio\SocketUtil.o \ sio/SocketUtil.o \
sio\StrAddr.o \ sio/StrAddr.o \
sio\UAcceptA.o \ sio/UAcceptA.o \
sio\UAcceptS.o \ sio/UAcceptS.o \
sio\UBind.o \ sio/UBind.o \
sio\UConnect.o \ sio/UConnect.o \
sio\UConnectByName.o \ sio/UConnectByName.o \
sio\UNew.o \ sio/UNew.o \
sio\URecvfrom.o \ sio/URecvfrom.o \
sio\USendto.o \ sio/USendto.o \
sio\USendtoByName.o \ sio/USendtoByName.o \
sio\SError.o \ sio/SError.o \
sio\main.o \ sio/SWait.o \
sio\SWait.o sio/main.o
OBJECTS_STRN = \ OBJECTS_STRN = \
Strn\Dynscat.o \ Strn/Dynscat.o \
Strn\Strncpy.o \ Strn/Strncpy.o \
Strn\Strncat.o \ Strn/Strncat.o \
Strn\Strntok.o \ Strn/Strntok.o \
Strn\Strnpcpy.o \ Strn/Strnpcpy.o \
Strn\Strnpcat.o \ Strn/Strnpcat.o \
Strn\strtokc.o \ Strn/strtokc.o \
Strn\version.o Strn/version.o
OBJECTS_LIBNCFTP = \ OBJECTS_LIBNCFTP = \
libncftp\open.o \ libncftp/open.o \
libncftp\cmds.o \ libncftp/cmds.o \
libncftp\util.o \ libncftp/util.o \
libncftp\rcmd.o \ libncftp/rcmd.o \
libncftp\ftp.o \ libncftp/ftp.o \
libncftp\io.o \ libncftp/io.o \
libncftp\errno.o \ libncftp/errno.o \
libncftp\linelist.o \ libncftp/linelist.o \
libncftp\glob.o libncftp/glob.o
OBJECTS_NCFTP = \ OBJECTS_NCFTP = \
ncftp\cmds.o \ ncftp/cmds.o \
ncftp\cmdlist.o \ ncftp/cmdlist.o \
ncftp\getopt.o \ ncftp/getopt.o \
ncftp\ls.o \ ncftp/ls.o \
ncftp\main.o \ ncftp/main.o \
ncftp\version.o \ ncftp/version.o \
ncftp\shell.o \ ncftp/shell.o \
ncftp\util.o \ ncftp/util.o \
ncftp\readln.o \ ncftp/readln.o \
ncftp\progress.o \ ncftp/progress.o \
ncftp\bookmark.o \ ncftp/bookmark.o \
ncftp\pref.o \ ncftp/pref.o \
ncftp\preffw.o \ ncftp/preffw.o \
ncftp\trace.o \ ncftp/trace.o \
ncftp\spool.o \ ncftp/spool.o \
ncftp\log.o \ ncftp/log.o \
ncftp\getline.o ncftp/getline.o
TARGET_OBJECTS = \ TARGET_OBJECTS = \
$(OBJECTS_SIO) \ $(OBJECTS_SIO) \
@ -102,4 +102,4 @@ include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk include $(TOOLS_PATH)/helper.mk
# EOF # EOF

View file

@ -190,5 +190,5 @@
#endif #endif
#include "Strn\Strn.h" /* Library header. */ #include "Strn/Strn.h" /* Library header. */
#include "libncftp\ncftp.h" /* Library header. */ #include "libncftp/ncftp.h" /* Library header. */