diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-11-20 01:09:39 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-11-20 01:09:39 +0000 |
commit | f634660cddaddb8395c38b5652d987ea7a77af53 (patch) | |
tree | 6eb153edac49639bf79209d551c6f13251e6f966 /lib/libc/Makefile.inc | |
parent | 52d77aa323e50c1b6232cb7e8daf2cffcbc1aa03 (diff) |
Put dl* function definitions in libc on ELF, removing the need for libdl.
These are just stubs, the real functions are resolved by ld.so when linking
is performed. ok art
Diffstat (limited to 'lib/libc/Makefile.inc')
-rw-r--r-- | lib/libc/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/Makefile.inc b/lib/libc/Makefile.inc index c9f6ddef254..27b8e06d65e 100644 --- a/lib/libc/Makefile.inc +++ b/lib/libc/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.4 2001/03/02 13:27:05 espie Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2001/11/20 01:09:38 pvalchev Exp $ # # This file contains make rules that are shared by libc and libc_r. # @@ -26,6 +26,7 @@ AINC+= -nostdinc -idirafter ${DESTDIR}/usr/include .endif .include "${LIBCSRCDIR}/db/Makefile.inc" +.include "${LIBCSRCDIR}/dlfcn/Makefile.inc" .include "${LIBCSRCDIR}/compat-43/Makefile.inc" .include "${LIBCSRCDIR}/gen/Makefile.inc" .include "${LIBCSRCDIR}/crypt/Makefile.inc" |