diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-02-07 14:11:08 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-02-07 14:11:08 +0000 |
commit | 108ebe4d7433efc873d18219d85212295a8be0a0 (patch) | |
tree | 175018da161948af399ca77be06629b342f8070e /ftp/wu-ftpd | |
parent | c4917c6dc867d75806000ef7f25290e03bd1f633 (diff) | |
download | ports-108ebe4d7433efc873d18219d85212295a8be0a0.tar.gz ports-108ebe4d7433efc873d18219d85212295a8be0a0.zip |
Notes
Diffstat (limited to 'ftp/wu-ftpd')
-rw-r--r-- | ftp/wu-ftpd/files/patch-am | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/ftp/wu-ftpd/files/patch-am b/ftp/wu-ftpd/files/patch-am index 3d04b641cb60..63dc0e35c31d 100644 --- a/ftp/wu-ftpd/files/patch-am +++ b/ftp/wu-ftpd/files/patch-am @@ -1,5 +1,5 @@ *** src/makefiles/Makefile.fbs.orig Thu Jan 16 11:27:58 1997 ---- src/makefiles/Makefile.fbs Wed Feb 5 14:18:13 1997 +--- src/makefiles/Makefile.fbs Fri Feb 7 17:04:42 1997 *************** *** 1,8 **** CC = cc @@ -44,18 +44,15 @@ *************** *** 24,30 **** +--- 24,34 ---- ${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} ++ .if defined(PACKAGE_BUILDING) + ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBES} ++ .else ++ ${CC} -static ${CFLAGS} -o $@ ${OBJS} ${LIBES} ++ .endif ckconfig: ckconfig.c ${CC} ${CFLAGS} -o $@ ckconfig.c |