diff options
author | obrien <obrien@FreeBSD.org> | 2001-05-02 23:56:21 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-05-02 23:56:21 +0000 |
commit | 538e761e025ee84b3b100b7c0eabceaa5b550b49 (patch) | |
tree | 212c800046bcfdedaa0f36777e0d9479206e0c43 /sbin/ldconfig | |
parent | d917f606f3edba70f558ca5105b6d31f1d87c910 (diff) | |
download | FreeBSD-src-538e761e025ee84b3b100b7c0eabceaa5b550b49.zip FreeBSD-src-538e761e025ee84b3b100b7c0eabceaa5b550b49.tar.gz |
* include/elf.h has been repo copied to include/elf-hints.h, and it no
longer includes machine/elf.h.
* consumers of elf.h now use the minimalist elf header possible.
This change is motivated by Binutils 2.11.0 and too much clashing over
our base elf headers and the Binutils elf headers.
Diffstat (limited to 'sbin/ldconfig')
-rw-r--r-- | sbin/ldconfig/elfhints.c | 2 | ||||
-rw-r--r-- | sbin/ldconfig/ldconfig.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ldconfig/elfhints.c b/sbin/ldconfig/elfhints.c index cda2269..9bdf56e 100644 --- a/sbin/ldconfig/elfhints.c +++ b/sbin/ldconfig/elfhints.c @@ -32,7 +32,7 @@ #include <ctype.h> #include <dirent.h> -#include <elf.h> +#include <elf-hints.h> #include <err.h> #include <errno.h> #include <fcntl.h> diff --git a/sbin/ldconfig/ldconfig.c b/sbin/ldconfig/ldconfig.c index 5c655b4..00c951d 100644 --- a/sbin/ldconfig/ldconfig.c +++ b/sbin/ldconfig/ldconfig.c @@ -40,7 +40,7 @@ static const char rcsid[] = #include <a.out.h> #include <ctype.h> #include <dirent.h> -#include <elf.h> +#include <elf-hints.h> #include <err.h> #include <errno.h> #include <fcntl.h> |