diff options
author | tv <tv@pkgsrc.org> | 2005-11-08 15:47:44 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-11-08 15:47:44 +0000 |
commit | 1ab0dd64b844cc98525c328015eb66d1fa6dde82 (patch) | |
tree | 8b9f223e290d74eacd9916f896fae6d03bde2e9c /net | |
parent | 4f2f8792ce534733477dc7d75a697d0d489b679e (diff) | |
download | pkgsrc-1ab0dd64b844cc98525c328015eb66d1fa6dde82.tar.gz |
Eliminate use of BSDisms __P() and __const in the only place they are used
(internal strptime(3) replacement prototypes).
Diffstat (limited to 'net')
-rw-r--r-- | net/IglooFTP/distinfo | 5 | ||||
-rw-r--r-- | net/IglooFTP/patches/patch-ac | 13 | ||||
-rw-r--r-- | net/IglooFTP/patches/patch-ad | 12 | ||||
-rw-r--r-- | net/IglooFTP/patches/patch-ae | 12 |
4 files changed, 41 insertions, 1 deletions
diff --git a/net/IglooFTP/distinfo b/net/IglooFTP/distinfo index 532d06f2b5b..341bcf9d317 100644 --- a/net/IglooFTP/distinfo +++ b/net/IglooFTP/distinfo @@ -1,7 +1,10 @@ -$NetBSD: distinfo,v 1.4 2005/11/03 22:39:38 rillig Exp $ +$NetBSD: distinfo,v 1.5 2005/11/08 15:47:44 tv Exp $ SHA1 (IglooFTP-0.6.1.src.tar.gz) = ab56bc6c15dc81525b8e987ae5fc15e562f92eed RMD160 (IglooFTP-0.6.1.src.tar.gz) = 7f0971ec857542d96a09dffc9db8a3544df38fae Size (IglooFTP-0.6.1.src.tar.gz) = 300553 bytes SHA1 (patch-aa) = 62f8e163e4b4fa3842732c11beb712bbd3a7448a SHA1 (patch-ab) = 95acf4685cf1da0ce04afc86f92ce201b24324e5 +SHA1 (patch-ac) = 4ab6aaf9e8bd4765a3d64a83ce6b84e661433749 +SHA1 (patch-ad) = 9e2fbcc3ece0782d32b8bf661dd81e513822852e +SHA1 (patch-ae) = 84cd31095b3b4772e27f7bc56daeaf77834680b6 diff --git a/net/IglooFTP/patches/patch-ac b/net/IglooFTP/patches/patch-ac new file mode 100644 index 00000000000..c15d33c222f --- /dev/null +++ b/net/IglooFTP/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2005/11/08 15:47:44 tv Exp $ + +--- src/protos.h.orig 1999-04-15 12:05:15.000000000 -0400 ++++ src/protos.h +@@ -132,7 +132,7 @@ char PANEL_FOCUS; + + + /* EXTERN */ +-extern char *strptime __P ((__const char *__s, __const char *__fmt, struct tm * __tp)); ++extern char *strptime (const char *__s, const char *__fmt, struct tm * __tp); + + + diff --git a/net/IglooFTP/patches/patch-ad b/net/IglooFTP/patches/patch-ad new file mode 100644 index 00000000000..9c7f6e27012 --- /dev/null +++ b/net/IglooFTP/patches/patch-ad @@ -0,0 +1,12 @@ +$NetBSD: patch-ad,v 1.1 2005/11/08 15:47:44 tv Exp $ + +--- src/local_select.h.orig 1999-04-15 12:05:15.000000000 -0400 ++++ src/local_select.h +@@ -271,7 +271,6 @@ local_compare_directories (GtkWidget * w + gchar *filename; + gchar *filesize; + char *filedate; +- extern char *strptime __P ((__const char *__s, __const char *__fmt, struct tm * __tp)); + + gtk_clist_freeze (GTK_CLIST (clist)); + gtk_clist_unselect_all (GTK_CLIST (clist)); diff --git a/net/IglooFTP/patches/patch-ae b/net/IglooFTP/patches/patch-ae new file mode 100644 index 00000000000..9a9ed8016ce --- /dev/null +++ b/net/IglooFTP/patches/patch-ae @@ -0,0 +1,12 @@ +$NetBSD: patch-ae,v 1.1 2005/11/08 15:47:44 tv Exp $ + +--- src/remote_select.h.orig 1999-04-15 12:05:15.000000000 -0400 ++++ src/remote_select.h +@@ -270,7 +270,6 @@ remote_compare_directories (GtkWidget * + gchar *filename; + gchar *filesize; + char *filedate; +- extern char *strptime __P ((__const char *__s, __const char *__fmt, struct tm * __tp)); + + gtk_clist_freeze (GTK_CLIST (clist)); + gtk_clist_unselect_all (GTK_CLIST (clist)); |