diff options
author | dsomero <xgizzmo@gmail.com> | 2010-05-23 22:07:53 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-23 23:31:06 -0500 |
commit | 51a3ab900726f87fd28ac613ef1a586b2313c6d5 (patch) | |
tree | 5d3ef902771caf079c05f48d1ed37ecbba1bf59a /network/thttpd/patches | |
parent | 2a2a59a710fec0285f0fef5b494a6484e97039fe (diff) | |
download | slackbuilds-51a3ab900726f87fd28ac613ef1a586b2313c6d5.tar.gz |
network/thttpd: Miscellaneous cleanups and patch.
Cleaned up build and added a patch for building on glibc 2.10.
Diffstat (limited to 'network/thttpd/patches')
-rw-r--r-- | network/thttpd/patches/thttpd-2.25b-glibc-2.10.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/network/thttpd/patches/thttpd-2.25b-glibc-2.10.patch b/network/thttpd/patches/thttpd-2.25b-glibc-2.10.patch new file mode 100644 index 0000000000..c97227827e --- /dev/null +++ b/network/thttpd/patches/thttpd-2.25b-glibc-2.10.patch @@ -0,0 +1,21 @@ +diff -ur thttpd-2.25b.orig/extras/htpasswd.c thttpd-2.25b/extras/htpasswd.c +--- thttpd-2.25b.orig/extras/htpasswd.c 2001-12-19 02:08:08.000000000 +0200 ++++ thttpd-2.25b/extras/htpasswd.c 2009-08-09 16:40:06.000000000 +0300 +@@ -49,7 +49,7 @@ + while((line[y++] = line[x++])); + } + +-static int getline(char *s, int n, FILE *f) { ++static int get_line(char *s, int n, FILE *f) { + register int i=0; + + while(1) { +@@ -189,7 +189,7 @@ + strcpy(user,argv[2]); + + found = 0; +- while(!(getline(line,MAX_STRING_LEN,f))) { ++ while(!(get_line(line,MAX_STRING_LEN,f))) { + if(found || (line[0] == '#') || (!line[0])) { + putline(tfp,line); + continue; |