Add XML RPC server plus NXWM build fixes from Max Holtzberg

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5150 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-09-14 14:07:21 +00:00
parent 3fcb8d9d6c
commit 5f470bd756
16 changed files with 1306 additions and 22 deletions
+1 -5
View File
@@ -42,11 +42,7 @@ CSRCS += lib_checkbase.c lib_isbasedigit.c lib_memset.c lib_memchr.c \
lib_strncasecmp.c lib_strncat.c lib_strncmp.c lib_strncpy.c \
lib_strndup.c lib_strcasestr.c lib_strpbrk.c lib_strrchr.c\
lib_strspn.c lib_strstr.c lib_strtok.c lib_strtokr.c lib_strtol.c \
lib_strtoll.c lib_strtoul.c lib_strtoull.c
ifeq ($(CONFIG_LIBC_FLOATINGPOINT),y)
CSRCS += lib_strtod.c
endif
lib_strtoll.c lib_strtoul.c lib_strtoull.c lib_strtod.c
# Add the string directory to the build
+7
View File
@@ -37,10 +37,15 @@
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/compiler.h>
#include <stdlib.h>
#include <ctype.h>
#include <errno.h>
#ifdef CONFIG_HAVE_DOUBLE
/****************************************************************************
* Pre-processor definitions
****************************************************************************/
@@ -232,3 +237,5 @@ double_t strtod(const char *str, char **endptr)
return number;
}
#endif /* CONFIG_HAVE_DOUBLE */