diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-09-26 21:03:25 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-02 17:19:16 +0100 |
commit | 5f0684c1d23a3520095a4d450a0c1fa95fa1c7b2 (patch) | |
tree | 2c4c6e704a4c83af203fb7ec84ca19168acbc5e6 /meta/recipes-qt/qt4/qt4-4.8.1/fix-config-tests.patch | |
parent | 8cc54d2d154b2ed9f931da39d75dc9c135f5e26d (diff) | |
download | openembedded-core-5f0684c1d23a3520095a4d450a0c1fa95fa1c7b2.tar.gz openembedded-core-5f0684c1d23a3520095a4d450a0c1fa95fa1c7b2.tar.bz2 openembedded-core-5f0684c1d23a3520095a4d450a0c1fa95fa1c7b2.zip |
qt4: drop patches not used in any recipe
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-4.8.1/fix-config-tests.patch')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-4.8.1/fix-config-tests.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-qt/qt4/qt4-4.8.1/fix-config-tests.patch b/meta/recipes-qt/qt4/qt4-4.8.1/fix-config-tests.patch deleted file mode 100644 index 1e0d14eb6b..0000000000 --- a/meta/recipes-qt/qt4/qt4-4.8.1/fix-config-tests.patch +++ /dev/null @@ -1,38 +0,0 @@ -Fix invocation in case of "ccache some-compiler-gcc". As the command "ccache some-compiler-gcc" will not exist but "ccache" will. - -both visibility and relocs were affected. - -Original Author: Holger Hans Peter Freyther <zecke@selfish.org> -Ported from OE by: Yu Ke <ke.yu@intel.com> -Upstream-Status: Pending - -Index: qt-x11-opensource-src-4.5.2/config.tests/unix/bsymbolic_functions.test -=================================================================== ---- qt-x11-opensource-src-4.5.2.orig/config.tests/unix/bsymbolic_functions.test 2009-08-01 08:01:11.000000000 +0200 -+++ qt-x11-opensource-src-4.5.2/config.tests/unix/bsymbolic_functions.test 2009-08-01 08:01:16.000000000 +0200 -@@ -8,7 +8,7 @@ - int main() { return 0; } - EOF - --"$COMPILER" -o libtest.so -shared -Wl,-Bsymbolic-functions -fPIC bsymbolic_functions.c >/dev/null 2>&1 && BSYMBOLIC_FUNCTIONS_SUPPORT=yes -+$COMPILER -o libtest.so -shared -Wl,-Bsymbolic-functions -fPIC bsymbolic_functions.c >/dev/null 2>&1 && BSYMBOLIC_FUNCTIONS_SUPPORT=yes - rm -f bsymbolic_functions.c libtest.so - - # done -Index: qt-x11-opensource-src-4.5.2/config.tests/unix/fvisibility.test -=================================================================== ---- qt-x11-opensource-src-4.5.2.orig/config.tests/unix/fvisibility.test 2009-06-20 06:57:50.000000000 +0200 -+++ qt-x11-opensource-src-4.5.2/config.tests/unix/fvisibility.test 2009-08-01 07:59:05.000000000 +0200 -@@ -15,9 +15,9 @@ - EOF - - if [ "$VERBOSE" = "yes" ] ; then -- "$COMPILER" -c -fvisibility=hidden fvisibility.c && FVISIBILITY_SUPPORT=yes -+ $COMPILER -c -fvisibility=hidden fvisibility.c && FVISIBILITY_SUPPORT=yes - else -- "$COMPILER" -c -fvisibility=hidden fvisibility.c >/dev/null 2>&1 && FVISIBILITY_SUPPORT=yes -+ $COMPILER -c -fvisibility=hidden fvisibility.c >/dev/null 2>&1 && FVISIBILITY_SUPPORT=yes - fi - rm -f fvisibility.c fvisibility.o - } - |