aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-07-02 17:32:40 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-07-02 17:32:40 +0000
commitc1b2f2fa1c5aca97317d4c5087c7ceba7786860a (patch)
tree262a81a2bf9e268b5ca8db3bbc7695de495315c9
parent18705680e6a68aad3fdcfe5f6473f3a95cd863b5 (diff)
downloadbusybox-w32-c1b2f2fa1c5aca97317d4c5087c7ceba7786860a.tar.gz
busybox-w32-c1b2f2fa1c5aca97317d4c5087c7ceba7786860a.tar.bz2
busybox-w32-c1b2f2fa1c5aca97317d4c5087c7ceba7786860a.zip
Per patch from vodz, change a couple of consts to defines, since
apparently gcc 2.95.4, at least, is too stupid to realize that a "static const int" is in fact a constant. git-svn-id: svn://busybox.net/trunk/busybox@2969 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/tr.c4
-rw-r--r--sysklogd/syslogd.c4
-rw-r--r--syslogd.c4
-rw-r--r--tr.c4
4 files changed, 12 insertions, 4 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c
index 07922af17..a5d068262 100644
--- a/coreutils/tr.c
+++ b/coreutils/tr.c
@@ -31,7 +31,9 @@
31#include <sys/types.h> 31#include <sys/types.h>
32#include "busybox.h" 32#include "busybox.h"
33 33
34static const int ASCII = 0377; 34/* This must be a #define, since when DODEBUG and BUFFERS_GO_IN_BSS are
35 * enabled, we otherwise get a "storage size isn't constant error. */
36#define ASCII 0377
35 37
36/* some "globals" shared across this file */ 38/* some "globals" shared across this file */
37static char com_fl, del_fl, sq_fl; 39static char com_fl, del_fl, sq_fl;
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 8d8bd1afe..89f5348ec 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -387,7 +387,9 @@ static void domark(int sig)
387 } 387 }
388} 388}
389 389
390static const int BUFSIZE = 1023; 390/* This must be a #define, since when DODEBUG and BUFFERS_GO_IN_BSS are
391 * enabled, we otherwise get a "storage size isn't constant error. */
392#define BUFSIZE 1023
391static int serveConnection (int conn) 393static int serveConnection (int conn)
392{ 394{
393 RESERVE_BB_BUFFER(tmpbuf, BUFSIZE + 1); 395 RESERVE_BB_BUFFER(tmpbuf, BUFSIZE + 1);
diff --git a/syslogd.c b/syslogd.c
index 8d8bd1afe..89f5348ec 100644
--- a/syslogd.c
+++ b/syslogd.c
@@ -387,7 +387,9 @@ static void domark(int sig)
387 } 387 }
388} 388}
389 389
390static const int BUFSIZE = 1023; 390/* This must be a #define, since when DODEBUG and BUFFERS_GO_IN_BSS are
391 * enabled, we otherwise get a "storage size isn't constant error. */
392#define BUFSIZE 1023
391static int serveConnection (int conn) 393static int serveConnection (int conn)
392{ 394{
393 RESERVE_BB_BUFFER(tmpbuf, BUFSIZE + 1); 395 RESERVE_BB_BUFFER(tmpbuf, BUFSIZE + 1);
diff --git a/tr.c b/tr.c
index 07922af17..a5d068262 100644
--- a/tr.c
+++ b/tr.c
@@ -31,7 +31,9 @@
31#include <sys/types.h> 31#include <sys/types.h>
32#include "busybox.h" 32#include "busybox.h"
33 33
34static const int ASCII = 0377; 34/* This must be a #define, since when DODEBUG and BUFFERS_GO_IN_BSS are
35 * enabled, we otherwise get a "storage size isn't constant error. */
36#define ASCII 0377
35 37
36/* some "globals" shared across this file */ 38/* some "globals" shared across this file */
37static char com_fl, del_fl, sq_fl; 39static char com_fl, del_fl, sq_fl;