Change threading defaults on FreeBSD

Gerald Pfeifer gerald at pfeifer.com
Wed Apr 12 13:23:56 CDT 2006


It seems FreeBSD caught up with Linux as far as threading is concerned,
so let's build wine-pthread in addition to the default wine-kthread and
make it the default.

Gerald

ChangeLog:
On FreeBSD, build wine-pthread in addition to wine-kthread and make
the former the default.

Index: configure.ac
===================================================================
RCS file: /home/wine/wine/configure.ac,v
retrieving revision 1.475
diff -u -3 -p -r1.475 configure.ac
--- configure.ac	10 Apr 2006 18:49:33 -0000	1.475
+++ configure.ac	11 Apr 2006 14:04:46 -0000
@@ -1159,6 +1159,9 @@ case $host_cpu in
         AC_SUBST(EXTRA_BINARIES,"wine-kthread wine-pthread wine-preloader") ;;
       darwin*)
         AC_SUBST(MAIN_BINARY,"wine-pthread") ;;
+      freebsd*)
+        AC_SUBST(MAIN_BINARY,"wine-pthread")
+        AC_SUBST(EXTRA_BINARIES,"wine-kthread") ;;
       *)
         AC_SUBST(MAIN_BINARY,"wine-kthread") ;;
     esac



More information about the wine-patches mailing list