aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-28 15:00:27 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-28 15:00:27 +0000
commitf2b1bcd7a8e56b729495631ca10696a2e5b7c0e1 (patch)
treeb51cf8c9f1b989a12e3b1c5fd79f9506ce04e559
parentec62b3930a6815408f8aab271ab4f60191d1525b (diff)
downloadbusybox-w32-f2b1bcd7a8e56b729495631ca10696a2e5b7c0e1.tar.gz
busybox-w32-f2b1bcd7a8e56b729495631ca10696a2e5b7c0e1.tar.bz2
busybox-w32-f2b1bcd7a8e56b729495631ca10696a2e5b7c0e1.zip
- reinstate dmalloc and efence support
git-svn-id: svn://busybox.net/trunk/busybox@18261 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--Config.in1
-rw-r--r--Makefile.flags9
2 files changed, 9 insertions, 1 deletions
diff --git a/Config.in b/Config.in
index 650ea0878..6192833c0 100644
--- a/Config.in
+++ b/Config.in
@@ -382,7 +382,6 @@ config WERROR
382choice 382choice
383 prompt "Additional debugging library" 383 prompt "Additional debugging library"
384 default NO_DEBUG_LIB 384 default NO_DEBUG_LIB
385 depends on DEBUG
386 help 385 help
387 Using an additional debugging library will make BusyBox become 386 Using an additional debugging library will make BusyBox become
388 considerable larger and will cause it to run more slowly. You 387 considerable larger and will cause it to run more slowly. You
diff --git a/Makefile.flags b/Makefile.flags
index b7711f698..487300de2 100644
--- a/Makefile.flags
+++ b/Makefile.flags
@@ -58,4 +58,13 @@ endif
58ifeq ($(CONFIG_SELINUX),y) 58ifeq ($(CONFIG_SELINUX),y)
59LDFLAGS += -lselinux -lsepol 59LDFLAGS += -lselinux -lsepol
60endif 60endif
61
62ifeq ($(CONFIG_EFENCE),y)
63LDFLAGS += -lefence
64endif
65
66ifeq ($(CONFIG_DMALLOC),y)
67LDFLAGS += -ldmalloc
68endif
69
61#LDFLAGS += -nostdlib 70#LDFLAGS += -nostdlib