summaryrefslogtreecommitdiffstats
path: root/contrib/patch-ffmpeg-solaris.patch
diff options
context:
space:
mode:
authoreddyg <[email protected]>2007-10-11 19:46:43 +0000
committereddyg <[email protected]>2007-10-11 19:46:43 +0000
commit82d12896b6f48d7049aee762ddd59e61499caf9c (patch)
tree9730a81a25d91fe942d70bc12ad3fde0de754bbb /contrib/patch-ffmpeg-solaris.patch
parent0f0738745170bd3fdd56c0580a164e50b515c12d (diff)
Port HandBrake to Solaris, most of the heavy lifting provided by begi.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1019 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/patch-ffmpeg-solaris.patch')
-rw-r--r--contrib/patch-ffmpeg-solaris.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/contrib/patch-ffmpeg-solaris.patch b/contrib/patch-ffmpeg-solaris.patch
new file mode 100644
index 000000000..b5e483829
--- /dev/null
+++ b/contrib/patch-ffmpeg-solaris.patch
@@ -0,0 +1,29 @@
+--- ffmpeg.base/configure Wed Oct 10 15:39:57 2007
++++ ffmpeg/configure Wed Oct 10 15:51:44 2007
+@@ -889,7 +889,7 @@
+ source_path_used="no"
+ else
+ source_path="`cd \"$source_path\"; pwd`"
+- echo "$source_path" | grep -q '[[:blank:]]' &&
++ echo "$source_path" | /usr/xpg4/bin/grep -q '[[:blank:]]' &&
+ die "Out of tree builds are impossible with whitespace in source path."
+ fi
+
+@@ -993,7 +993,7 @@
+ ;;
+ --enable-?*|--disable-?*)
+ eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
+- echo "$CMDLINE_SELECT" | grep -q "^ *$option\$" || die_unknown $opt
++ echo "$CMDLINE_SELECT" | /usr/xpg4/bin/grep -q "^ *$option\$" || die_unknown $opt
+ $action $option
+ ;;
+ --list-*)
+@@ -1368,7 +1368,7 @@
+ fi
+
+ gnu_make(){
+- $1 --version 2>&1 | grep -q GNU
++ $1 --version 2>&1 | /usr/xpg4/bin/grep -q GNU
+ }
+
+ if ! gnu_make $make; then