summaryrefslogtreecommitdiffstats
path: root/lib/libftpio/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Zap now-unused SHLIB_MINORpeter2002-09-281-1/+0
|
* MAN[1-9] -> MAN.ru2001-03-271-1/+1
|
* Reduce shlib major that is bumped by my mistake.ume2000-07-061-1/+1
| | | | We don't need bumping it in this time.
* IPv6 support.ume2000-07-051-1/+2
| | | | | | This is required for forthcoming IPv6 ready installer. Obtained from: KAME
* Replace beforeinstall target with new variables used by .mk system.rgrimes2000-01-141-4/+1
| | | | Reviewed by: marcel, and make world
* Fix style bugs and orderingmarcel1999-10-031-7/+5
| | | | Submitted by: bde
* sigset_t change (part 5 of 5)marcel1999-09-291-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ----------------------------- Most of the userland changes are in libc. For both the alpha and the i386 setjmp has been changed to accomodate for the new sigset_t. Internally, libc is mostly rewritten to use the new syscalls. The exception is in compat-43/sigcompat.c The POSIX thread library has also been rewritten to use the new sigset_t. Except, that it currently only handles NSIG signals instead of the maximum _SIG_MAXSIG. This should not be a problem because current applications don't use any signals higher than NSIG. There are version bumps for the following libraries: libdialog libreadline libc libc_r libedit libftpio libss These libraries either a) have one of the modified structures visible in the interface, or b) use sigset_t internally and may cause breakage if new binaries are used against libraries that don't have the sigset_t change. This not an immediate issue, but will be as soon as applications start using the new range to its fullest. NOTE: libncurses already had an version bump and has not been given one now. NOTE: doscmd is a real casualty and has been disconnected for the moment. Reconnection will eventually happen after doscmd has been fixed. I'm aware that being the last one to touch it, I'm automaticly promoted to being maintainer. According to good taste this means that I will receive a badge which either will be glued or mechanically stapled, drilled or otherwise violently forced onto me :-) NOTE: pcvt/vttest cannot be compiled with -traditional. The change cause sys/types to be included along the way which contains the const and volatile modifiers. I don't consider this a solution, but more a workaround.
* For functions ftpGetURL, ftpPutURL, ftpLogin it was impossible to knowache1996-11-141-1/+1
| | | | | | | | | | | | | | | | | | | | FTP error return code because 1) They return NULL, it means that ftpErrno can't be used because it takes file pointer 2) They don't have FILE-type argument as f.e. ftpGet/ftpPut to use it for ftpErrno instead. For that functions I add yet one int* type argument to store FTP error return code. It is impossible to add some global variable for that reason, because user can have multiply FTP connections opened at the same time. So, interface changed, major number bumped. Userland changes will follows. Minor bugfixes, the code: Forget to close file in few places, when failure occurse Forget to NULL cached host name, multiply free is possible
* Make libftpio 64-bit clean.peter1996-09-191-0/+3
| | | | | | | Major version bumped (by me) since the ftpGet() public interface has changed (an "int *" becomes and "off_t *") Submitted by: Jason Thorpe <thorpej@nas.nasa.gov>, PR#1640
* cmp -s || install -c ==> install -Cpeter1996-08-301-2/+2
|
* Add an ftpErrString() function for returning human readable failurejkh1996-08-211-1/+16
| | | | | codes. Submitted-By: Archie Cobbs <archie@whistle.com>
* Makefile:gpalmer1996-06-261-1/+1
| | | | | | | Add -Wall to CFLAGS ftpio.h: It's ftpGetModTime, not ftpModTime
* Bring in a new library `libftpio', so named to avoid clashes with olderjkh1996-06-171-0/+10
packages and also sort of give the (correct) impression that this basically sits on top of stdio and deals with stream pointers (FILE*).
OpenPOWER on IntegriCloud