mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-04 05:39:05 +00:00
More compile fixes
This commit is contained in:
parent
10d93102c3
commit
3e41db8de9
3 changed files with 5 additions and 9 deletions
|
|
@ -44,7 +44,9 @@ CSRCS =
|
|||
|
||||
ifeq ($(CONFIG_INTERPRETERS_BAS),y)
|
||||
|
||||
CSRCS += auto.c bas.c fs.c getopt1.c getopt.c global.c main.c program.c statement.c str.c value.c var.c
|
||||
CSRCS += auto.c bas.c fs.c getopt1.c getopt.c global.c main.c program.c
|
||||
CSRCS += str.c value.c var.c
|
||||
|
||||
DEPPATH = --dep-path .
|
||||
VPATH = .
|
||||
|
||||
|
|
@ -52,12 +54,6 @@ ifeq ($(WINTOOL),y)
|
|||
INCDIROPT = -w
|
||||
endif
|
||||
|
||||
##include ascii/Make.defs
|
||||
##include functions/Make.defs
|
||||
##include nuttx/Make.defs
|
||||
##include rtu/Make.defs
|
||||
##include tcp/Make.defs
|
||||
|
||||
endif
|
||||
|
||||
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
#endif
|
||||
/*}}}*/
|
||||
|
||||
#ifndef CONFIG_INTERPRETER_BAS_HAVE_ENVIRON
|
||||
#ifdef CONFIG_INTERPRETER_BAS_HAVE_ENVIRON
|
||||
extern char **environ;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
/* #includes */ /*{{{C}}}*//*{{{*/
|
||||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
#include "config.h"
|
||||
|
||||
#include <unistd.h>
|
||||
#ifdef HAVE_GETTEXT
|
||||
#include <libintl.h>
|
||||
#define _(String) gettext(String)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue