diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2009-04-25 01:17:56 +0000 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2009-04-25 01:17:56 +0000 |
commit | 72a932922fbaafa787f706379a00f26ca578c8ec (patch) | |
tree | 4eb7137356472ccb78eb42dd6c496afb5d0222ab /multimedia/mythtv-frontend/files/patch-configure-toupper | |
parent | - Added missing patches to fix compilation problems with installed (diff) |
- Clarified the requirement for Qt with OpenGL support to avoid
compilation problems
- Fixed backwards configure flag handling with WITH_OPENGL option
- Split some multi-file patches
- Regenerated patches with "make makepatch"
- Added patches to avoid compilation problems with installed ffmpeg port [1]
- Bumped PORTREVISION
Reported by: Torfinn Ingolfsen <torfinn dot ingolfsen at broadpark dot no> [1]
Submitted by: Bernhard Frohlich <decke at bluelife dot at> [1]
Diffstat (limited to 'multimedia/mythtv-frontend/files/patch-configure-toupper')
-rw-r--r-- | multimedia/mythtv-frontend/files/patch-configure-toupper | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/multimedia/mythtv-frontend/files/patch-configure-toupper b/multimedia/mythtv-frontend/files/patch-configure-toupper deleted file mode 100644 index b58b9219b71a..000000000000 --- a/multimedia/mythtv-frontend/files/patch-configure-toupper +++ /dev/null @@ -1,19 +0,0 @@ ---- configure.orig 2008-11-10 22:44:26.000000000 +0100 -+++ configure 2008-11-10 22:45:16.000000000 +0100 -@@ -274,13 +274,13 @@ - exit 1 - } - --# "tr '[a-z]' '[A-Z]'" is a workaround for Solaris tr not grokking "tr a-z A-Z" -+# Avoid locale weirdness, besides we really just want to translate ASCII. - toupper(){ -- echo "$@" | tr '[a-z]' '[A-Z]' -+ echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ - } - - tolower(){ -- echo "$@" | tr '[A-Z]' '[a-z]' -+ echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz - } - - set_all(){ |