diff options
author | petef <petef@FreeBSD.org> | 2002-06-08 05:46:26 +0800 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2002-06-08 05:46:26 +0800 |
commit | 1132f3a19db33f91d8a077b876ffcb6adc1441b7 (patch) | |
tree | 77973fa078ff504c7f28238189fa8381f48fe540 /ftp/yale-tftpd/files | |
parent | 9f95e18bb249ca24fd4176dbbb57a425ff47171e (diff) | |
download | freebsd-ports-gnome-1132f3a19db33f91d8a077b876ffcb6adc1441b7.tar.gz freebsd-ports-gnome-1132f3a19db33f91d8a077b876ffcb6adc1441b7.tar.zst freebsd-ports-gnome-1132f3a19db33f91d8a077b876ffcb6adc1441b7.zip |
Include string.h to fix the build on -current.
PR: 39011
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'ftp/yale-tftpd/files')
-rw-r--r-- | ftp/yale-tftpd/files/patch-classes::dict.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ftp/yale-tftpd/files/patch-classes::dict.c b/ftp/yale-tftpd/files/patch-classes::dict.c new file mode 100644 index 000000000000..d22469abc3d0 --- /dev/null +++ b/ftp/yale-tftpd/files/patch-classes::dict.c @@ -0,0 +1,12 @@ +$FreeBSD$ + +--- classes/dict.c.orig Fri Jun 7 23:23:47 2002 ++++ classes/dict.c Fri Jun 7 23:24:27 2002 +@@ -14,6 +14,7 @@ + */ + + #include <stdio.h> ++#include <string.h> + #include <strings.h> + extern char* strdup(); + extern int strcasecmp(); |