Added a wine-glibc binary that detects the glibc threading in use and
execs the corresponding wine binary.
Removed the --with-nptl configure option.

diff --git a/configure b/configure
index 1667645..e2fcaaf 100755
--- a/configure
+++ b/configure
@@ -858,7 +858,6 @@
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
   --without-opengl        do not use OpenGL
   --without-curses        do not use curses
-  --with-nptl             use glibc NPTL threading support
   --with-wine-tools=<dir> use Wine tools from directory <dir>
   --with-x                use the X Window System
 
@@ -1346,12 +1345,6 @@
 
 fi;
 
-# Check whether --with-nptl or --without-nptl was given.
-if test "${with_nptl+set}" = set; then
-  withval="$with_nptl"
-
-fi;
-
 # Check whether --with-wine-tools or --without-wine-tools was given.
 if test "${with_wine_tools+set}" = set; then
   withval="$with_wine_tools"
@@ -12635,16 +12628,10 @@
 
 case $host_os in
   linux*)
-    WINE_BINARIES="wine-kthread wine-pthread"
+    WINE_BINARIES="wine-glibc wine-kthread wine-pthread"
 
-    if test "x$with_nptl" = "xyes"
-    then
-        MAIN_BINARY="wine-pthread"
+    MAIN_BINARY="wine-glibc"
 
-    else
-        MAIN_BINARY="wine-kthread"
-
-    fi
     ;;
   *)
     WINE_BINARIES="wine-kthread"