Define _GNU_SOURCE in config.h, remove definitions from source files.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1757 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch 2009-05-12 07:35:00 +00:00
parent 61cba7e0e6
commit 4c71ca6b5f
3 changed files with 1 additions and 8 deletions

View File

@ -851,6 +851,7 @@ if test "${has_environ}" != "yes" ; then
AC_MSG_FAILURE([Could not find 'environ' in unistd.h or available libraries.])
fi
AC_DEFINE([_GNU_SOURCE],[1],[Use GNU C library extensions (e.g. stdndup).])
# set default gcc warnings
GCC_WARNINGS="-Wall -Wstrict-prototypes -Wformat-security"

View File

@ -53,9 +53,6 @@
#define JIM_DYNLIB /* Dynamic library support for UNIX and WIN32 */
#endif /* JIM_ANSIC */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE /* for vasprintf() */
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -21,11 +21,6 @@
#include "config.h"
#endif
// we must define _GNU_SOURCE to get strndup
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "oocd_trace.h"
#include "arm7_9_common.h"