From b50e48bc1606a0fe1a097fb17ce9936aec91871d Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 2 Dec 2009 11:42:15 +0000 Subject: [PATCH] =?UTF-8?q?2009-12-02=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * shttpd/def.h: Use __m32c__ for m32c. --- cpukit/ChangeLog | 4 ++++ cpukit/shttpd/defs.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 9664097878..554f09d8e7 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2009-12-02 Ralf Corsépius + + * shttpd/def.h: Use __m32c__ for m32c. + 2009-12-02 Ralf Corsépius * shttpd/def.h: Shrink default URI_MAX to 32767. diff --git a/cpukit/shttpd/defs.h b/cpukit/shttpd/defs.h index 6956ebe113..593dd8bbd0 100644 --- a/cpukit/shttpd/defs.h +++ b/cpukit/shttpd/defs.h @@ -40,7 +40,7 @@ # if defined(__AVR__) /* FIXME: 1500 is sufficient to avoid compilation breakdown. */ # define URI_MAX (32767-1500) -# elif defined(__M32C__) +# elif defined(__m32c__) /* FIXME: 1500 is sufficient to avoid compilation breakdown. */ # define URI_MAX (32767-1500) # else