1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

- Remove a.out support

This commit is contained in:
Pav Lucistnik 2007-01-27 13:21:22 +00:00
parent 1ea214c56f
commit f74e4d4e46
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=183410
3 changed files with 2 additions and 10 deletions

View File

@ -16,7 +16,7 @@ MAINTAINER= roberto@FreeBSD.org
COMMENT= Small, fast malloc library by Doug Lea
NO_WRKSUBDIR= yes
INSTALLS_SHLIB= yes
USE_LDCONFIG= yes
do-extract:
@${MKDIR} ${WRKDIR}

View File

@ -20,11 +20,7 @@ LIBDIR=${PREFIX}/lib
INCDIR=${PREFIX}/include/dlmalloc
# for the shared lib stuff
.if ${PORTOBJFORMAT} == "elf"
VERSION=${VER:R:R}
.else
VERSION=${VER:R}
.endif
LIBMALLOC=libdlmalloc.a
LIBSMALLOC=libdlmalloc.so.${VERSION}
@ -54,11 +50,7 @@ $(LIBMALLOC): $(OBJS)
$(LIBSMALLOC): $(SOBJS)
rm -f $(LIBSMALLOC)
.if ${PORTOBJFORMAT} == "elf"
ld -Bshareable -soname $(LIBSMALLOC) -o $(LIBSMALLOC) $(SOBJS)
.else
ld -Bshareable -o $(LIBSMALLOC) $(SOBJS)
.endif
clean:
-rm -f *.o \#* *~ *.core a.out gmon.out mon.out onefile.c *.sL prof.out

View File

@ -1,5 +1,5 @@
include/dlmalloc/malloc.h
lib/libdlmalloc.a
lib/libdlmalloc.so
lib/libdlmalloc.so.2.6
lib/libdlmalloc.so.2
@dirrm include/dlmalloc