Browse Source

ldd.host: Fix compilation for STANDALONE support

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer 12 years ago
parent
commit
8579ca1921
2 changed files with 10 additions and 6 deletions
  1. 6 6
      utils/Makefile.in
  2. 4 0
      utils/porting.h

+ 6 - 6
utils/Makefile.in

@@ -52,24 +52,24 @@ UTILS_CONFIG_FLAGS-$(LDSO_STANDALONE_SUPPORT) += -D__LDSO_STANDALONE_SUPPORT__
 
 BUILD_CFLAGS-utils := \
     -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
-    -DUCLIBC_LDSO=$(UCLIBC_LDSO) \
+    -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" \
     $(UTILS_CONFIG_FLAGS-y)
-BUILD_CFLAGS-ldconfig.host := $(BUILD_CFLAGS-utils) \
+BUILD_CFLAGS-ldconfig.host := \
 				-DBUILDING_LINKAGE \
 				-I$(top_srcdir)ldso/include
-BUILD_CFLAGS-ldd.host      := $(BUILD_CFLAGS-utils) \
+BUILD_CFLAGS-ldd.host      := \
 				-DBUILDING_LINKAGE \
 				-I$(top_srcdir)ldso/include \
 				-include $(top_srcdir)include/elf.h
-BUILD_CFLAGS-locale.host   := $(BUILD_CFLAGS-utils) \
+BUILD_CFLAGS-locale.host   := \
 				-DNOT_IN_libc \
 				-I$(top_srcdir)utils/ \
 				-I.
-BUILD_CFLAGS-iconv.host    := $(BUILD_CFLAGS-utils) \
+BUILD_CFLAGS-iconv.host    := \
 			-include $(top_builddir)extra/locale/c8tables.h \
 			-I$(top_srcdir)libc/misc/wchar -DL_iconv_main
 
-BUILD_CFLAGS-getconf.host  := $(BUILD_CFLAGS-utils) \
+BUILD_CFLAGS-getconf.host  := \
 				-DGETCONF_DIR='"$(CURDIR)"'
 
 # Rules

+ 4 - 0
utils/porting.h

@@ -45,6 +45,10 @@
 #include <dmalloc.h>
 #endif
 
+#ifndef ARRAY_SIZE
+# define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
+#endif
+
 /* For SunOS */
 #ifndef PATH_MAX
 #define PATH_MAX _POSIX_PATH_MAX