summaryrefslogtreecommitdiff
path: root/devel/libmalloc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/libmalloc')
-rw-r--r--devel/libmalloc/Makefile14
-rw-r--r--devel/libmalloc/distinfo1
-rw-r--r--devel/libmalloc/files/patch-aa136
-rw-r--r--devel/libmalloc/pkg-comment1
-rw-r--r--devel/libmalloc/pkg-descr17
-rw-r--r--devel/libmalloc/pkg-plist7
6 files changed, 0 insertions, 176 deletions
diff --git a/devel/libmalloc/Makefile b/devel/libmalloc/Makefile
deleted file mode 100644
index 49cb04c5600f..000000000000
--- a/devel/libmalloc/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-# New ports collection makefile for: Mark Moraes malloc library
-# Version required: 1.17alpha
-# Date created: 11 January 1995
-# Whom: jkh
-#
-# $Id: Makefile,v 1.2 1995/04/01 12:44:37 jkh Exp $
-#
-
-DISTNAME= malloc
-PKGNAME= malloc-1.17a
-CATEGORIES+= development programming libraries
-MASTER_SITES= ftp.cs.toronto.edu:/pub/moraes/
-
-.include <bsd.port.mk>
diff --git a/devel/libmalloc/distinfo b/devel/libmalloc/distinfo
deleted file mode 100644
index 67645da0ee93..000000000000
--- a/devel/libmalloc/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (malloc.tar.gz) = 0a849b322ea5c74b41ddcc59d313bff2
diff --git a/devel/libmalloc/files/patch-aa b/devel/libmalloc/files/patch-aa
deleted file mode 100644
index 5af23fc4a3f6..000000000000
--- a/devel/libmalloc/files/patch-aa
+++ /dev/null
@@ -1,136 +0,0 @@
-*** Makefile.orig Mon Jan 9 08:34:51 1995
---- Makefile Sun Jan 29 14:16:10 1995
-***************
-*** 11,18 ****
- # puts malloc.h in $INCDIR.
- #
-
-! LIBDIR=$(HOME)/lib/$(ARCH)
-! INCDIR=$(HOME)/include
-
- # neutralize SystemV genius
- SHELL=/bin/sh
---- 11,18 ----
- # puts malloc.h in $INCDIR.
- #
-
-! LIBDIR=${PREFIX}/lib
-! INCDIR=${PREFIX}/include
-
- # neutralize SystemV genius
- SHELL=/bin/sh
-***************
-*** 62,72 ****
---- 62,75 ----
- RANLIB = ranlib
-
- LDFLAGS=#-Bstatic
-+ VERSION=1.13
-
- # only developers should have to change stuff below this line
-
- EXT=_d
- LIBMALLOC=libmalloc$(EXT).a
-+ LIBSMALLOC=libmalloc${EXT}.so.${VERSION}
-+
- PROGS=testmalloc$(EXT) simumalloc$(EXT) teststomp$(EXT) maltrace$(EXT)
-
- DEFINES= $(NORMALDEFS) $(DEBUGDEFS)
-***************
-*** 108,116 ****
-
- CFLAGS = $(CDEBUGFLAGS) $(INCLUDES) $(DEFINES)
-
-! all: pass clean libmalloc
-
-! pass: $(LIBMALLOC) $(PROGS) out$(EXT)
-
- libmalloc:
- $(MAKE) -f Makefile $(MFLAGS) CC="$(CC)" DEBUGDEFS="$(FASTDEFS)" \
---- 111,126 ----
-
- CFLAGS = $(CDEBUGFLAGS) $(INCLUDES) $(DEFINES)
-
-! .c.o:
-! ${CC} -c ${CFLAGS} $< -o $@
-! ${CC} -c -fpic ${CFLAGS} $< -o shared/$@
-!
-! all: mkdir pass clean libmalloc
-
-! mkdir:
-! @mkdir -p shared
-!
-! pass: $(LIBMALLOC) $(LIBSMALLOC) $(PROGS) out$(EXT)
-
- libmalloc:
- $(MAKE) -f Makefile $(MFLAGS) CC="$(CC)" DEBUGDEFS="$(FASTDEFS)" \
-***************
-*** 134,139 ****
---- 144,155 ----
- -$(RANLIB) $(LIBMALLOC)
- touch .lib$(EXT)
-
-+ $(LIBSMALLOC): $(OBJS)
-+ rm -f $(LIBSMALLOC) ${SPLAYOBJ}
-+ cd splay; $(MAKE) $(MFLAGS) DEFINES="$(DEFINES)" \
-+ LIBMALLOC=../$(LIBMALLOC) CC="$(CC) -fpic"
-+ (cd shared; ld -Bshareable -o ../$(LIBSMALLOC) $(OBJS) ../${SPLAYOBJ})
-+
- $(SPLAYOBJ): .foo
- cd splay; $(MAKE) $(MFLAGS) DEFINES="$(DEFINES)" \
- LIBMALLOC=../$(LIBMALLOC) CC="$(CC)"
-***************
-*** 149,155 ****
- onefile.c: $(SRCS) $(SPLAYSRC)
- rm -f onefile.c
- cat $(SRCS) $(SPLAYSRC) | sed '/RCSID/d' > onefile.c
-!
- .lint: $(SRCS)
- ($(LINT) $(LINTFLAGS) $(DEFINES) $(INCLUDES) $(SRCS); \
- $(LINT) $(LINTFLAGS) $(DEFINES) $(INCLUDES) -I.. $(SPLAYSRC)) \
---- 165,171 ----
- onefile.c: $(SRCS) $(SPLAYSRC)
- rm -f onefile.c
- cat $(SRCS) $(SPLAYSRC) | sed '/RCSID/d' > onefile.c
-!
- .lint: $(SRCS)
- ($(LINT) $(LINTFLAGS) $(DEFINES) $(INCLUDES) $(SRCS); \
- $(LINT) $(LINTFLAGS) $(DEFINES) $(INCLUDES) -I.. $(SPLAYSRC)) \
-***************
-*** 163,169 ****
-
- clean:
- -rm -f *.o \#* *~ core a.out gmon.out mon.out onefile.c *.sL prof.out
-! cd splay; $(MAKE) clean
-
- veryclean: clean cleanprogs
- make EXT= cleanprogs
---- 179,186 ----
-
- clean:
- -rm -f *.o \#* *~ core a.out gmon.out mon.out onefile.c *.sL prof.out
-! -(cd shared; rm -f *.o \#* *~)
-! (cd splay; $(MAKE) clean)
-
- veryclean: clean cleanprogs
- make EXT= cleanprogs
-***************
-*** 174,181 ****
- -$(RANLIB) $(LIBDIR)/libmalloc.a
- install -c -m 644 libmalloc_d.a $(LIBDIR)
- -$(RANLIB) $(LIBDIR)/libmalloc_d.a
- install -c -m 644 malloc.h $(INCDIR)
-!
- .id: $(SRCS)
- mkid $(SRCS) $(SPLAYSRC) $(HDRS) $(SPLAYHDR)
- touch .id
---- 191,199 ----
- -$(RANLIB) $(LIBDIR)/libmalloc.a
- install -c -m 644 libmalloc_d.a $(LIBDIR)
- -$(RANLIB) $(LIBDIR)/libmalloc_d.a
-+ install -c -m 644 ${LIBSMALLOC} $(LIBDIR)
- install -c -m 644 malloc.h $(INCDIR)
-!
- .id: $(SRCS)
- mkid $(SRCS) $(SPLAYSRC) $(HDRS) $(SPLAYHDR)
- touch .id
diff --git a/devel/libmalloc/pkg-comment b/devel/libmalloc/pkg-comment
deleted file mode 100644
index 2de5f8c2603c..000000000000
--- a/devel/libmalloc/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Small, fast malloc library with comprehensive error checking
diff --git a/devel/libmalloc/pkg-descr b/devel/libmalloc/pkg-descr
deleted file mode 100644
index 40778a38319f..000000000000
--- a/devel/libmalloc/pkg-descr
+++ /dev/null
@@ -1,17 +0,0 @@
-This is a complete set of memory allocation functions (malloc and
-friends).
- The allocator is small, fast and space-efficient.
-
- It performs coalescing on frees.
-
- It has hooks for profiling, tracing and memory leak detection.
-
- It has very comprehensive and paranoid errorchecking as a compile
- time option, enough to detect most forms of heap corruption.
-
- Optionally, it attempts to be compatible with the proposed ANSI C
- Standard definition for the standard library functions malloc(),
- calloc(), realloc() and free(). By default, it is more or less
- compatible with existing Unix malloc() functions - some
- differences do exist. (Notably free(), cfree() returning void,
- realloc() not accepting a freed block)
diff --git a/devel/libmalloc/pkg-plist b/devel/libmalloc/pkg-plist
deleted file mode 100644
index 907518ae38f9..000000000000
--- a/devel/libmalloc/pkg-plist
+++ /dev/null
@@ -1,7 +0,0 @@
-@cd /usr/local
-lib/libmalloc.a
-@exec ranlib %D/%F
-lib/libmalloc_d.a
-@exec ranlib %D/%F
-include/malloc.h
-lib/libmalloc_d.so.1.13