|
|
# --- T2-COPYRIGHT-NOTE-BEGIN --- # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # # T2 SDE: package/.../mplayer/ppc64.patch # Copyright (C) 2006 The T2 SDE Project # # More information can be found in the files COPYING and README. # # This patch file is dual-licensed. It is available under the license the # patched project is licensed under, as long as it is an OpenSource license # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms # of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # --- T2-COPYRIGHT-NOTE-END ---
Accept ppc64 as ppc is.
- Rene Rebe <rene@exactcode.de>
--- MPlayer-1.0pre8/configure.vanilla 2006-06-16 10:30:36.000000000 +0200
+++ MPlayer-1.0pre8/configure 2006-06-16 10:32:31.000000000 +0200
@@ -135,7 +135,7 @@
ppc() { case "$host_arch" in - ppc) return 0;;
+ ppc|ppc64) return 0;;
*) return 1;; esac } @@ -1182,7 +1182,7 @@
_optimizing='' ;; - ppc)
+ ppc|ppc64)
_def_arch='#define ARCH_POWERPC 1' _def_dcbzl='#define NO_DCBZL 1' _target_arch='TARGET_ARCH_POWERPC = yes'
|