This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: configure.in broken.


Since actually fixing TLS for the Hurd once and for all needs a serial
console--which I don't have, I have given up the attempt to fix it.
Also since the code is totally untested (noone has tested the code
that Roland checked in since 2002 or so), it would also be a pain in
the ass to force people to actually use it right now.  Instead I
supply a patch that disables TLS support for the Hurd.

The patch that is applied, is a hack.  To my knowledge there is no
easier way to disable TLS support only for GNU/Hurd.  And one needs to
know the host which one is building for, so it _must_ be done after
AC_CANONICAL_HOST.  In short, this is the cleanest way todo it. :(


2004-09-03  Alfred M. Szmidt  <ams@kemisten.nu>

	* configure.in: Disable TLS support for GNU/Hurd.

 
--- configure.in	02 Sep 2004 23:58:53 +0200	1.423
+++ configure.in	03 Sep 2004 00:15:24 +0200	
@@ -270,6 +270,8 @@ linux*)
   ;;
 gnu*)
   host_os=`echo $host_os | sed -e 's/gnu/gnu-gnu/'`
+  # XXX: Disable TLS support for now GNU/Hurd since it is broken.
+  usetls=no
   ;;
 esac


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]