*** empty log message ***
authorayin <ayin>
Mon, 23 Jan 2006 10:26:21 +0000 (10:26 +0000)
committerayin <ayin>
Mon, 23 Jan 2006 10:26:21 +0000 (10:26 +0000)
Changes
configure.ac
src/rxvt.h

diff --git a/Changes b/Changes
index e5d4a60..508871b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -16,7 +16,6 @@ WISH: just for fun, do shade and tint with XRender.
 DUMB: support tex fonts
 
 TODO: kill arabic presentation form table
-TODO: kill dlmalloc dmalloc
 TODO: bug ayin to document possible configure options?
 
 7.2  Sun Jan 22 21:58:16 CET 2006
index 1b6ef2b..d31fd50 100644 (file)
@@ -108,8 +108,6 @@ dnl AC_ENABLE_SHARED(no)dnl#        libtool
 dnl AC_ENABLE_STATIC(yes)dnl#  libtool
 dnl AC_PROG_LIBTOOL()dnl#              libtool
 
-MALLOC_TYPE=S
-
 support_frills=yes
 support_inheritpixmap=yes
 support_tinting=yes
@@ -415,25 +413,6 @@ AC_ARG_ENABLE(slipwheeling,
     support_mouseslipwheel=$enableval
   fi])
 
-AC_ARG_ENABLE(dmalloc,
-  [  --enable-dmalloc        enable Gray Watson's malloc - for debugging use],
-  [if test x$enableval = xyes; then
-    MALLOC_TYPE=G
-    DEBUG=-DDEBUG_MALLOC
-    DLIB="-L/usr/local/lib -ldmalloc"
-    DINCLUDE=-I/usr/local/include
-  fi])
-
-AC_ARG_ENABLE(dlmalloc,
-  [  --enable-dlmalloc       enable Doug Lea's malloc - for production use
-                     NOTE: enable only one malloc package],
-  [if test x$enableval = xyes; then
-    MALLOC_TYPE=D
-    DEBUG=
-    DLIB="-L/usr/local/lib -ldlmalloc"
-    DINCLUDE=
-  fi])
-
 AC_ARG_ENABLE(smart-resize,
   [  --enable-smart-resize   enable smart growth/shrink behaviour],
   [if test x$enableval = xyes; then
@@ -1006,16 +985,6 @@ echo "Configuration:
   Compiler flags:             $CFLAGS
   Linker:                     $LINKER"
 
-if test "$MALLOC_TYPE" = S; then
-  echo "  malloc support:             system default"
-fi
-if test "$MALLOC_TYPE" = G; then
-  echo "  malloc support:             Gray Watson's dmalloc"
-fi
-if test "$MALLOC_TYPE" = D; then
-  echo "  malloc support:             Doug Lea's malloc"
-fi
-
 if test x$support_xpm = xyes; then
   echo "  Xpm library:                $XPM_LIBS"
 fi
index f90bb0e..7506803 100644 (file)
@@ -1528,9 +1528,5 @@ struct rxvt_term : zero_initialized, rxvt_vars {
 # define __PROTO(p)     ()
 #endif
 
-#ifdef DEBUG_malloc
-# include "dmalloc.h"           /* This comes last */
-#endif
-
 #endif                          /* _RXVT_H_ */