mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-09 02:40:08 +00:00
749a9a4fbf
* config.h.in (NO_HIDDEN): New #undef. * include/libc-symbols.h [! NO_HIDDEN]: Add this condition to nonempty definitions of hidden_proto et al. * configure.in: Grok --disable-hidden-plt to define NO_HIDDEN. * configure: Regenerated. * sysdeps/mach/hurd/configure.in: Always define NO_HIDDEN. * sysdeps/mach/hurd/configure: Regenerated.
95 lines
2.5 KiB
Plaintext
Executable File
95 lines
2.5 KiB
Plaintext
Executable File
|
|
# GNU libc on the Hurd is always reentrant.
|
|
DEFINES="$DEFINES -D_LIBC_REENTRANT"
|
|
|
|
cat >> confdefs.h <<\EOF
|
|
#define NO_HIDDEN 1
|
|
EOF
|
|
|
|
|
|
# Don't bother trying to generate any glue code to be compatible with the
|
|
# existing system library, because we are the only system library.
|
|
inhibit_glue=yes
|
|
|
|
if test "x$prefix" != x; then
|
|
echo "configure: warning: --prefix= (empty) is required for GNU/Hurd to work normally" 1>&2
|
|
fi
|
|
|
|
case "$machine" in
|
|
i386*)
|
|
# The default oldest ABI is 2.2.6.
|
|
# We only need a "yes" here if the oldest ABI supported will be < 2.2.6.
|
|
if test "$oldest_abi" != default && test "$oldest_abi" \< "2.2.6"; then
|
|
libc_cv_gcc_unwind_find_fde=yes
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
echo $ac_n "checking Hurd header version""... $ac_c" 1>&6
|
|
echo "configure:30: checking Hurd header version" >&5
|
|
if eval "test \"`echo '$''{'libc_cv_hurd_version'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
#line 35 "configure"
|
|
#include "confdefs.h"
|
|
#include <hurd/version.h>
|
|
int main() {
|
|
|
|
#define NEED_VERSION 20020609
|
|
#if HURD_INTERFACE_VERSION < NEED_VERSION
|
|
# error Hurd version too old: HURD_INTERFACE_VERSION < NEED_VERSION
|
|
#endif
|
|
; return 0; }
|
|
EOF
|
|
if { (eval echo configure:46: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
libc_cv_hurd_version=ok
|
|
else
|
|
echo "configure: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
rm -rf conftest*
|
|
libc_cv_hurd_version=bad
|
|
fi
|
|
rm -f conftest*
|
|
fi
|
|
|
|
echo "$ac_t""$libc_cv_hurd_version" 1>&6
|
|
if test "x$libc_cv_hurd_version" != xok; then
|
|
{ echo "configure: error: Hurd headers not installed or too old" 1>&2; exit 1; }
|
|
fi
|
|
|
|
|
|
|
|
# See if mig groks `retcode'.
|
|
echo $ac_n "checking whether $MIG supports the retcode keyword""... $ac_c" 1>&6
|
|
echo "configure:67: checking whether $MIG supports the retcode keyword" >&5
|
|
if eval "test \"`echo '$''{'hurd_cv_mig_retcode'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.defs <<\EOF
|
|
#include <mach/std_types.defs>
|
|
#include <mach/mach_types.defs>
|
|
subsystem foobar 1000;
|
|
type reply_port_t = polymorphic | MACH_MSG_TYPE_PORT_SEND_ONCE
|
|
ctype: mach_port_t;
|
|
simpleroutine foobar_reply (
|
|
reply_port: reply_port_t;
|
|
err: kern_return_t, RetCode);
|
|
EOF
|
|
if { ac_try='CC="${CC}" ${MIG-false} -n conftest.defs 1>&5'; { (eval echo configure:81: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
|
|
hurd_cv_mig_retcode=yes
|
|
else
|
|
hurd_cv_mig_retcode=no
|
|
fi
|
|
rm -f conftest*
|
|
fi
|
|
|
|
echo "$ac_t""$hurd_cv_mig_retcode" 1>&6
|
|
if test $hurd_cv_mig_retcode = yes; then
|
|
cat >> confdefs.h <<\EOF
|
|
#define HAVE_MIG_RETCODE 1
|
|
EOF
|
|
|
|
fi
|