diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-28 15:00:27 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-28 15:00:27 +0000 |
commit | 58a275b303adfd1a9f27005ece5e9cb83443b5cc (patch) | |
tree | b51cf8c9f1b989a12e3b1c5fd79f9506ce04e559 | |
parent | 0eec4abb1371910a5a034da09057fbd0e47b3614 (diff) | |
download | busybox-w32-58a275b303adfd1a9f27005ece5e9cb83443b5cc.tar.gz busybox-w32-58a275b303adfd1a9f27005ece5e9cb83443b5cc.tar.bz2 busybox-w32-58a275b303adfd1a9f27005ece5e9cb83443b5cc.zip |
- reinstate dmalloc and efence support
-rw-r--r-- | Config.in | 1 | ||||
-rw-r--r-- | Makefile.flags | 9 |
2 files changed, 9 insertions, 1 deletions
@@ -382,7 +382,6 @@ config WERROR | |||
382 | choice | 382 | choice |
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 | |||
58 | ifeq ($(CONFIG_SELINUX),y) | 58 | ifeq ($(CONFIG_SELINUX),y) |
59 | LDFLAGS += -lselinux -lsepol | 59 | LDFLAGS += -lselinux -lsepol |
60 | endif | 60 | endif |
61 | |||
62 | ifeq ($(CONFIG_EFENCE),y) | ||
63 | LDFLAGS += -lefence | ||
64 | endif | ||
65 | |||
66 | ifeq ($(CONFIG_DMALLOC),y) | ||
67 | LDFLAGS += -ldmalloc | ||
68 | endif | ||
69 | |||
61 | #LDFLAGS += -nostdlib | 70 | #LDFLAGS += -nostdlib |