ChangeLog: NPTL is only available on i686 versions of Red Hat 9, so ensure the /lib/tls directory is present before enabling support in wineinstall.
Index: tools/wineinstall =================================================================== RCS file: /home/wine/wine/tools/wineinstall,v retrieving revision 1.55 diff -u -r1.55 wineinstall --- tools/wineinstall 16 May 2003 20:13:16 -0000 1.55 +++ tools/wineinstall 1 Jun 2003 11:48:57 -0000 @@ -20,8 +20,8 @@ # #--- defaults (change these if you are a packager) -CONFARGS="" # configure args, e.g. --prefix=/usr --sysconfdir=/etc -prefix=/usr/local # installation prefix +CONFARGS="--with-nptl" # configure args, e.g. --prefix=/usr --sysconfdir=/etc +prefix=/opt/wine # installation prefix sysconfdir=$prefix/etc # where wine.conf and the global registry are supposed to be bindir=$prefix/bin # where winelib apps will be (or are) installed libdir=$prefix/lib # where libwine.so will be (or is) installed @@ -152,8 +152,8 @@ echo "WINE Installer v0.74" echo -# check for redhat 9 so we can enable --with-nptl until runtime detection is complete -if [ -e /etc/redhat-release ] && grep Shrike /etc/redhat-release &>/dev/null; then +# check for redhat 9 with tls libs so we can enable --with-nptl until runtime detection is complete +if [ -e /etc/redhat-release ] && grep "Shrike" /etc/redhat-release &>/dev/null && [ -e /lib/tls ]; then CONFARGS="$CONFARGS --with-nptl" fi