diff options
author | ache <ache@FreeBSD.org> | 1997-02-05 19:23:42 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-02-05 19:23:42 +0800 |
commit | 320520b6c7cfd65cdc8e4a44253f3fcb09f50e33 (patch) | |
tree | 6699465f4a25fc4ad29c5700a6a070f8a3ba3fb5 /ftp/wu-ftpd+ipv6 | |
parent | 495e17eb832b6f500ccb3c5c68155ca901a46134 (diff) | |
download | freebsd-ports-gnome-320520b6c7cfd65cdc8e4a44253f3fcb09f50e33.tar.gz freebsd-ports-gnome-320520b6c7cfd65cdc8e4a44253f3fcb09f50e33.tar.zst freebsd-ports-gnome-320520b6c7cfd65cdc8e4a44253f3fcb09f50e33.zip |
Restore static linking of ftpd
Diffstat (limited to 'ftp/wu-ftpd+ipv6')
-rw-r--r-- | ftp/wu-ftpd+ipv6/files/patch-am | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/ftp/wu-ftpd+ipv6/files/patch-am b/ftp/wu-ftpd+ipv6/files/patch-am index 54655a677dee..3d04b641cb60 100644 --- a/ftp/wu-ftpd+ipv6/files/patch-am +++ b/ftp/wu-ftpd+ipv6/files/patch-am @@ -1,5 +1,5 @@ *** src/makefiles/Makefile.fbs.orig Thu Jan 16 11:27:58 1997 ---- src/makefiles/Makefile.fbs Thu Jan 30 17:50:47 1997 +--- src/makefiles/Makefile.fbs Wed Feb 5 14:18:13 1997 *************** *** 1,8 **** CC = cc @@ -42,3 +42,20 @@ all: ftpd ftpcount ftpshut ckconfig +*************** +*** 24,30 **** + ${CC} ${CFLAGS} -o $@ ftpshut.c vers.o ${LIBES} + + ftpd: ${OBJS} ${LIBC} +! ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBES} + + ckconfig: ckconfig.c + ${CC} ${CFLAGS} -o $@ ckconfig.c +--- 24,30 ---- + ${CC} ${CFLAGS} -o $@ ftpshut.c vers.o ${LIBES} + + ftpd: ${OBJS} ${LIBC} +! ${CC} -static ${CFLAGS} -o $@ ${OBJS} ${LIBES} + + ckconfig: ckconfig.c + ${CC} ${CFLAGS} -o $@ ckconfig.c |