diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-11 10:02:41 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-11 10:02:41 +0100 |
commit | 042feca78f2360e63929f3aa425f6468ed11c84a (patch) | |
tree | 3f6ec5b7d828926979a534a5e7c93c3f1996642b | |
parent | 3b14ab0254a131e458c4f5ffdee931e868206424 (diff) | |
download | hurd-042feca78f2360e63929f3aa425f6468ed11c84a.tar.gz hurd-042feca78f2360e63929f3aa425f6468ed11c84a.tar.bz2 hurd-042feca78f2360e63929f3aa425f6468ed11c84a.zip |
libthreads: Finish emoving
* config.make.in (VERSIONING): Remove.
* configure.ac: Do not set VERSIONING.
-rw-r--r-- | config.make.in | 3 | ||||
-rw-r--r-- | configure.ac | 11 |
2 files changed, 0 insertions, 14 deletions
diff --git a/config.make.in b/config.make.in index 3b7af5e2..349fca87 100644 --- a/config.make.in +++ b/config.make.in @@ -62,9 +62,6 @@ LDFLAGS += @LDFLAGS@ gnu89-inline-CFLAGS = @libc_cv_gnu89_inline@ -# `yes' or `no' to indicate if ld --version-script is available. -VERSIONING = @VERSIONING@ - # How to link against Parted libraries, if at all. PARTED_LIBS = @PARTED_LIBS@ diff --git a/configure.ac b/configure.ac index 56db1e21..dcb9e7cd 100644 --- a/configure.ac +++ b/configure.ac @@ -151,17 +151,6 @@ AC_CACHE_CHECK([for libio], hurd_cv_libio=yes, hurd_cv_libio=no)) -# The versions of the symbols in libthreads have to match those in -# libc.so. Since the symbols in a libc that includes libio will be -# versioned differently from the ones in a libc that uses stdio, this -# isn't easy to accomplish. Instead we leave things unversioned if -# libio isn't found. -if test $hurd_cv_libio = yes; then - VERSIONING=$hurd_cv_ld_version_script_option -else - VERSIONING=no -fi -AC_SUBST(VERSIONING) # Check if libc contains these functions. AC_CHECK_FUNCS(file_exec_paths exec_exec_paths _hurd_exec_paths) |