mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
Fix build on -current by not initializing FILE * variables statically
This commit is contained in:
parent
284b0ac57e
commit
8616f7ffb4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=65647
19
www/webstone/files/patch-ac
Normal file
19
www/webstone/files/patch-ac
Normal file
@ -0,0 +1,19 @@
|
||||
--- webmaster.c.orig Wed Sep 4 20:30:39 2002
|
||||
+++ webmaster.c Wed Sep 4 20:31:22 2002
|
||||
@@ -88,7 +88,7 @@
|
||||
SOCKET socknum[MAXCLIENTS];
|
||||
SOCKET sockIO[MAXTOTALPROCS];
|
||||
SOCKET sockErr[MAXTOTALPROCS];
|
||||
-THREAD FILE *debugfile = stderr;
|
||||
+THREAD FILE *debugfile;
|
||||
|
||||
struct hostent *master_phe; /* IP addresses for webmaster */
|
||||
|
||||
@@ -1385,6 +1385,7 @@
|
||||
|
||||
/* Initalization of variables. */
|
||||
/* debugfile = stdout; */
|
||||
+ debugfile = stderr;
|
||||
memset(buffer, 0, NCCARGS);
|
||||
memset(webserver, 0, MAXHOSTNAMELEN);
|
||||
memset(configfile, 0, MAXPATHLEN);
|
11
www/webstone/files/patch-ad
Normal file
11
www/webstone/files/patch-ad
Normal file
@ -0,0 +1,11 @@
|
||||
--- webclient.c.orig Wed Sep 4 20:34:36 2002
|
||||
+++ webclient.c Wed Sep 4 20:35:02 2002
|
||||
@@ -79,7 +79,7 @@
|
||||
char proxyserver[MAXHOSTNAMELEN];
|
||||
char debug_filename[MAXPATHLEN];
|
||||
|
||||
-THREAD FILE *debugfile = stderr;
|
||||
+THREAD FILE *debugfile;
|
||||
THREAD FILE *logfile;
|
||||
THREAD stats_t timestat;
|
||||
THREAD rqst_timer_t timerarray[MAXNUMOFFILES];
|
Loading…
Reference in New Issue
Block a user