2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>

* shttpd/def.h: Use __m32c__ for m32c.
This commit is contained in:
Ralf Corsepius
2009-12-02 11:42:15 +00:00
parent 086442b7b1
commit b50e48bc16
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* shttpd/def.h: Use __m32c__ for m32c.
2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org> 2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* shttpd/def.h: Shrink default URI_MAX to 32767. * shttpd/def.h: Shrink default URI_MAX to 32767.

View File

@@ -40,7 +40,7 @@
# if defined(__AVR__) # if defined(__AVR__)
/* FIXME: 1500 is sufficient to avoid compilation breakdown. */ /* FIXME: 1500 is sufficient to avoid compilation breakdown. */
# define URI_MAX (32767-1500) # define URI_MAX (32767-1500)
# elif defined(__M32C__) # elif defined(__m32c__)
/* FIXME: 1500 is sufficient to avoid compilation breakdown. */ /* FIXME: 1500 is sufficient to avoid compilation breakdown. */
# define URI_MAX (32767-1500) # define URI_MAX (32767-1500)
# else # else