diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2006-04-13 18:13:33 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2006-04-13 18:13:33 +0000 |
commit | 3b9967468bcb9d71ffd63a4482b42abe00fde1e8 (patch) | |
tree | fd2a137a01150e5062f54a3ec394fb5301d54494 /emulators/wine/files/patch-configure | |
parent | Update to 9.5g. (diff) |
Update to Wine 0.9.12, and add a patch of mine to make use of the
FreeBSD pthread libraries by default.
Notes
Notes:
svn path=/head/; revision=159441
Diffstat (limited to 'emulators/wine/files/patch-configure')
-rw-r--r-- | emulators/wine/files/patch-configure | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/emulators/wine/files/patch-configure b/emulators/wine/files/patch-configure new file mode 100644 index 000000000000..0cfc324f0a86 --- /dev/null +++ b/emulators/wine/files/patch-configure @@ -0,0 +1,36 @@ +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 +Index: configure +=================================================================== +RCS file: /home/wine/wine/configure,v +retrieving revision 1.788 +diff -u -3 -p -r1.788 configure +--- configure 10 Apr 2006 18:49:32 -0000 1.788 ++++ configure 11 Apr 2006 14:04:45 -0000 +@@ -13740,6 +13740,10 @@ case $host_cpu in + + EXTRA_BINARIES="wine-kthread wine-pthread wine-preloader" + ;; ++ freebsd*) ++ MAIN_BINARY="wine-pthread" ++ EXTRA_BINARIES="wine-kthread" ++ ;; + darwin*) + MAIN_BINARY="wine-pthread" + ;; + |