summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-ftp/ftpd/files/ftpd-0.17-shadowfix.patch')
-rw-r--r--net-ftp/ftpd/files/ftpd-0.17-shadowfix.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/net-ftp/ftpd/files/ftpd-0.17-shadowfix.patch b/net-ftp/ftpd/files/ftpd-0.17-shadowfix.patch
deleted file mode 100644
index 1287a6fcd..000000000
--- a/net-ftp/ftpd/files/ftpd-0.17-shadowfix.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -Naur linux-ftpd-0.17/ftpd/Makefile linux-ftpd-0.17-patched/ftpd/Makefile
---- linux-ftpd-0.17/ftpd/Makefile 1999-12-12 19:04:58.000000000 +0100
-+++ linux-ftpd-0.17-patched/ftpd/Makefile 2003-04-06 11:52:17.000000000 +0200
-@@ -19,7 +19,11 @@
- all: ftpd
-
- %.o: %.c
-+ ifdef USE_SHADOW
-+ $(CC) $(CFLAGS) -DUSE_SHADOW -DHASSETPROCTITLE $< -c
-+ else
- $(CC) $(CFLAGS) -DHASSETPROCTITLE $< -c
-+ endif
-
- ftpcmd.c: %.c: %.y
- $(YACC) $<
-diff -Naur linux-ftpd-0.17/support/Makefile linux-ftpd-0.17-patched/support/Makefile
---- linux-ftpd-0.17/support/Makefile 1999-08-01 00:05:52.000000000 +0200
-+++ linux-ftpd-0.17-patched/support/Makefile 2003-04-06 11:54:50.000000000 +0200
-@@ -5,7 +5,11 @@
- all: libsupport.a
-
- %.o: %.c
-+ ifdef USE_SHADOW
-+ $(CC) $(CFLAGS) -DUSE_SHADOW -DHASSETPROCTITLE $< -c
-+ else
- $(CC) $(CFLAGS) -DHASSETPROCTITLE $< -c
-+ endif
-
- libsupport.a: $(OBJS)
- ar -cruv $@ $^