Module: tools
Branch: master
Commit: f2a87e5e2eced7b66d4824ee112a559dc36fd487
URL: http://source.winehq.org/git/tools.git/?a=commit;h=f2a87e5e2eced7b66d4824ee…
Author: Mikolaj Zalewski <mikolajz(a)tygrys.dom>
Date: Tue Feb 12 22:03:39 2008 +0100
move the example config file to config-example. Add config to gitignore
---
.gitignore | 1 +
scripts/Master.sh | 5 +++++
scripts/{config => config-example} | 2 +-
3 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/.gitignore b/.gitignore
index 8b8ad77..8485d8d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
/work/*
+/scripts/config
/scripts/local-posthook.sh
/php/conf
/php/dumps
diff --git a/scripts/Master.sh b/scripts/Master.sh
index 01d97c6..dace16c 100755
--- a/scripts/Master.sh
+++ b/scripts/Master.sh
@@ -2,6 +2,11 @@
# Main script - change 'config' to setup input/output directories
+if [ ! -f ./config ]; then
+ echo "Config file not found in current directory. Copy config-example to config and edit the configuration"
+ exit 1
+fi
+
. ./config
function die {
diff --git a/scripts/config b/scripts/config-example
similarity index 97%
rename from scripts/config
rename to scripts/config-example
index e06f874..b8068dd 100644
--- a/scripts/config
+++ b/scripts/config-example
@@ -17,4 +17,4 @@ WORKDIR=../work
# making the script work even for a just downloaded tree with only ./configure
# executed in it. If you are running the script on trees that are already fully
# built you may set this to '0' to save time.
-PREPARE_TREES=1
\ No newline at end of file
+PREPARE_TREES=1
Module: wine
Branch: master
Commit: b2f09fd20421d0a5e179b42332ca63bc5ac17d8a
URL: http://source.winehq.org/git/wine.git/?a=commit;h=b2f09fd20421d0a5e179b4233…
Author: Stefan Doesinger <stefan(a)codeweavers.com>
Date: Wed Jun 17 22:51:34 2009 +0200
wined3d: Emulate clipplanes in ARB if the NV extensions are not available.
This patch tries to find a free texture coordinate to load up to 4 clip
coordinates into the pixel shader, and uses KIL to throw away fragments
that are cut by a clipplane. If no free texture coordinate is found,
clipping is not done. If more than 4 clipplanes are used, only the first
4 are actually enabled. That should be pretty rare though.
---
dlls/wined3d/arb_program_shader.c | 160 +++++++++++++++++++++++++++++++------
1 files changed, 136 insertions(+), 24 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=b2f09fd20421d0a5e179b…