Overview
Comment: | Added small patch to silence spurious warnings |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
782d14bacdc5dfdb31c45a78aa8f30d1 |
User & Date: | rkeene on 2014-05-02 15:50:02 |
Other Links: | manifest | tags |
Context
2014-05-02
| ||
16:37 | Corrected macro check for Tcl Stubs and renamed functions check-in: ff7febee23 user: rkeene tags: trunk | |
15:50 | Added small patch to silence spurious warnings check-in: 782d14bacd user: rkeene tags: trunk | |
07:16 | Updated to move GCC fixed headers into a fix directory check-in: d3f22e0fb0 user: rkeene tags: trunk, 0.1 | |
Changes
Added build/tcc-patches/0.9.26/tcc-0.9.26-gnusourcesafety.diff version [483d740ff0].
> > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | diff -uNr tcc-0.9.26.orig/tcc.h tcc-0.9.26-1gnusourcesafety/tcc.h --- tcc-0.9.26.orig/tcc.h 2013-02-15 08:24:00.000000000 -0600 +++ tcc-0.9.26-1gnusourcesafety/tcc.h 2014-05-02 10:45:54.576640002 -0500 @@ -21,7 +21,9 @@ #ifndef _TCC_H #define _TCC_H +#ifndef _GNU_SOURCE #define _GNU_SOURCE +#endif #include "config.h" #ifdef CONFIG_TCCBOOT |