diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-11-03 15:21:12 +0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-11-04 07:42:31 +0700 |
commit | 051081585e40a3145028cda8e2a16c010a33ebe9 (patch) | |
tree | ef84660e5f90d87488111b75ced092cdd45ee52a /sim/config.h.in | |
parent | 49ea4303bf1248e422b2858a22e085e25ac34a9d (diff) | |
download | gdb-051081585e40a3145028cda8e2a16c010a33ebe9.zip gdb-051081585e40a3145028cda8e2a16c010a33ebe9.tar.gz gdb-051081585e40a3145028cda8e2a16c010a33ebe9.tar.bz2 |
sim: build: change AC_CHECK_LIB to AC_SEARCH_LIBS
With more C libraries moving functions entirely into the main -lc,
change the AC_CHECK_LIB calls to AC_SEARCH_LIBS so we look in there
first and avoid extra linkage when possible.
Diffstat (limited to 'sim/config.h.in')
-rw-r--r-- | sim/config.h.in | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sim/config.h.in b/sim/config.h.in index ba167b3..7c0087f 100644 --- a/sim/config.h.in +++ b/sim/config.h.in @@ -120,18 +120,6 @@ /* Define to 1 if you have the `kill' function. */ #undef HAVE_KILL -/* Define to 1 if you have the `dl' library (-ldl). */ -#undef HAVE_LIBDL - -/* Define to 1 if you have the `m' library (-lm). */ -#undef HAVE_LIBM - -/* Define to 1 if you have the `nsl' library (-lnsl). */ -#undef HAVE_LIBNSL - -/* Define to 1 if you have the `socket' library (-lsocket). */ -#undef HAVE_LIBSOCKET - /* Define to 1 if you have the `link' function. */ #undef HAVE_LINK |