diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/gtk-webcore/files | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/gtk-webcore/files')
13 files changed, 0 insertions, 243 deletions
diff --git a/packages/gtk-webcore/files/KWIQ-mimetype-segfault.patch b/packages/gtk-webcore/files/KWIQ-mimetype-segfault.patch deleted file mode 100644 index feee33c8fe..0000000000 --- a/packages/gtk-webcore/files/KWIQ-mimetype-segfault.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- NRCore/kwiq/KWQLoader.cpp.orig 2006-01-10 19:20:34.000000000 +0200 -+++ NRCore/kwiq/KWQLoader.cpp 2006-01-10 19:20:50.000000000 +0200 -@@ -292,7 +292,10 @@ - QString KWQResponseMIMEType(KWIQResponse *r) - { - ASSERT(r); -- return r->mimeType(); -+ if (!r) -+ return 0; -+ else -+ return r->mimeType(); - } - - QString KWQResponseHeaderString(KWIQResponse *r) diff --git a/packages/gtk-webcore/files/KWQKURL-urlcmp.patch b/packages/gtk-webcore/files/KWQKURL-urlcmp.patch deleted file mode 100644 index 89aec6147d..0000000000 --- a/packages/gtk-webcore/files/KWQKURL-urlcmp.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- NRCore/kwiq/KWQKURL.h.orig 2006-03-16 22:48:18.000000000 +0100 -+++ NRCore/kwiq/KWQKURL.h 2006-03-16 22:48:20.000000000 +0100 -@@ -130,4 +130,6 @@ - friend bool urlcmp(const QString &URLA, const QString &URLB, bool ignoreTrailingSlash, bool ignoreRef); - }; - -+bool urlcmp(const QString &URLA, const QString &URLB, bool ignoreTrailingSlash, bool ignoreRef); -+ - #endif diff --git a/packages/gtk-webcore/files/build_silence.patch b/packages/gtk-webcore/files/build_silence.patch deleted file mode 100644 index ac77e17aac..0000000000 --- a/packages/gtk-webcore/files/build_silence.patch +++ /dev/null @@ -1,16 +0,0 @@ -Index: configure.in -=================================================================== ---- configure.in (revision 46) -+++ configure.in (working copy) -@@ -134,9 +134,9 @@ - AC_SUBST(LIBCURL_LIBS) #needed by the osb-nrcore.pc.in - - --CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti -nostdinc++" -+CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti -nostdinc++ -DLOG_DISABLED" - --CPPFLAGS="$CPPFLAGS -include \"\$(top_srcdir)/WebCorePrefix.h\" $PACKAGE_CFLAGS $X_CFLAGS $JSCORE_CFLAGS $DEFINES" -+CPPFLAGS="$CPPFLAGS -include \"\$(top_srcdir)/WebCorePrefix.h\" $PACKAGE_CFLAGS $X_CFLAGS $JSCORE_CFLAGS $DEFINES -DLOG_DISABLED" - LDFLAGS="$LDFLAGS $PACKAGE_LIBS $X_LIBS $JSCORE_LIBS \ - -nodefaultlibs -lgcc -lc" - diff --git a/packages/gtk-webcore/files/fix-loading-error-report.patch b/packages/gtk-webcore/files/fix-loading-error-report.patch deleted file mode 100644 index 09e6f4f03a..0000000000 --- a/packages/gtk-webcore/files/fix-loading-error-report.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- NRCit.orig/src/gtk/webi.cc.orig 2006-04-04 01:53:14.000000000 +0300 -+++ NRCit/src/gtk/webi.cc 2006-04-04 01:44:20.000000000 +0300 -@@ -839,12 +839,15 @@ - status->status = WEBI_LOADING_COMPLETE; - status->statusCode = statusCode; - -+ g_signal_emit_by_name(webi, "status", status); - // assert(status->ready == status->files); - } - - void MyRoot::internalStatusStartItem(const OSB::ResourceStatus * _status) - { - if (!internal) return; -+ -+ status->status = WEBI_LOADING_START; - status->files++; - g_signal_emit_by_name(webi, "status", status); - } -@@ -852,6 +855,8 @@ - void MyRoot::internalStatusHeadersItem(const OSB::ResourceStatus * _status) - { - if (!internal) return; -+ -+ status->status = WEBI_LOADING_START; - if (_status->size()) { - status->size += _status->size(); - status->totalSize += _status->size(); -@@ -863,6 +868,8 @@ - void MyRoot::internalStatusProgressItem(const OSB::ResourceStatus * _status) - { - if (!internal) return; -+ -+ status->status = WEBI_LOADING_START; - status->totalReceived += _status->lastReceived(); - // in case Content-Length -header is not present - if (!_status->size()) { -@@ -880,6 +887,7 @@ - status->ready++; - if (_status->error()) { - // FIXME: handle errors as well.u -+ status->status = WEBI_LOADING_ERROR; - } - - g_signal_emit_by_name(webi, "status", status); diff --git a/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-JavaScriptCore.patch b/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-JavaScriptCore.patch deleted file mode 100644 index d48644cf5e..0000000000 --- a/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-JavaScriptCore.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -bur JavaScriptCore~orig/configure.in JavaScriptCore/configure.in ---- JavaScriptCore~orig/configure.in 2006-02-12 01:51:50.000000000 -0600 -+++ JavaScriptCore/configure.in 2006-02-12 22:26:44.000000000 -0600 -@@ -63,7 +63,7 @@ - fi - changequote([,])dnl - --CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti -nostdinc++" -+CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti -nostdinc++ -fno-threadsafe-statics" - LDFLAGS="$LDFLAGS $PACKAGE_LIBS" #-nodefaultlibs -lgcc -lc -lm" - - CPPFLAGS="$CPPFLAGS $PACKAGE_CFLAGS -I\$(top_srcdir)/kjs -I\$(top_srcdir)/pcre -I\$(top_srcdir)/" diff --git a/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-NRCit.patch b/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-NRCit.patch deleted file mode 100644 index bee942fa9a..0000000000 --- a/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-NRCit.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -bur NRCit~orig/configure.in NRCit/configure.in ---- NRCit~orig/configure.in 2005-08-08 18:07:00.000000000 -0500 -+++ NRCit/configure.in 2006-02-12 21:28:53.000000000 -0600 -@@ -37,7 +37,7 @@ - esac - case " $CXXFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; -- *) CXXFLAGS="$CXXFLAGS -Wall -Werror" ;; -+ *) CXXFLAGS="$CXXFLAGS -Wall -Werror -fno-threadsafe-statics" ;; - esac - fi - changequote([,])dnl diff --git a/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-NRCore.patch b/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-NRCore.patch deleted file mode 100644 index d3cb8c9b47..0000000000 --- a/packages/gtk-webcore/files/gcc4-fno-threadsafe-statics-NRCore.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -bur NRCore~orig/configure.in NRCore/configure.in ---- NRCore~orig/configure.in 2005-02-16 03:31:43.000000000 -0600 -+++ NRCore/configure.in 2006-02-12 21:03:49.000000000 -0600 -@@ -107,7 +107,7 @@ - esac - case " $CXXFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; -- *) CXXFLAGS="$CXXFLAGS -Wall " ;; -+ *) CXXFLAGS="$CXXFLAGS -Wall -fno-threadsafe-statics " ;; - esac - fi - changequote([,])dnl diff --git a/packages/gtk-webcore/files/gdk-colorspace.diff b/packages/gtk-webcore/files/gdk-colorspace.diff deleted file mode 100644 index f225bc937d..0000000000 --- a/packages/gtk-webcore/files/gdk-colorspace.diff +++ /dev/null @@ -1,25 +0,0 @@ -Index: src/ImageRenderer.cpp -=================================================================== -RCS file: /cvsroot/gtk-webcore/NRCit/src/ImageRenderer.cpp,v -retrieving revision 1.1.1.1 -diff -u -r1.1.1.1 ImageRenderer.cpp ---- NRCit.orig/src/ImageRenderer.cpp 16 Feb 2005 09:33:16 -0000 1.1.1.1 -+++ NRCit/src/ImageRenderer.cpp 27 May 2005 23:36:28 -0000 -@@ -297,7 +297,7 @@ - wantedSize.height, - GDK_INTERP_BILINEAR); - -- gdk_pixbuf_render_pixmap_and_mask(scaledbuf, &pixmap, &alpha, 100); -+ gdk_pixbuf_render_pixmap_and_mask_for_colormap(scaledbuf,gdk_colormap_get_system(), &pixmap, &alpha, 100); - - buf = scaledbuf; - if (iter) { -@@ -312,7 +312,7 @@ - } else { - - //correct size -- gdk_pixbuf_render_pixmap_and_mask(buf, &pixmap, &alpha, 100); -+ gdk_pixbuf_render_pixmap_and_mask_for_colormap(buf, gdk_colormap_get_system(),&pixmap, &alpha, 100); - } - - assert(gdk_pixbuf_get_has_alpha(buf) == (alpha != NULL)); diff --git a/packages/gtk-webcore/files/libm.patch b/packages/gtk-webcore/files/libm.patch deleted file mode 100644 index b0c0cc6af2..0000000000 --- a/packages/gtk-webcore/files/libm.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: osb-jscore-0.5.0/configure.in -=================================================================== ---- osb-jscore-0.5.0.orig/configure.in 2004-10-18 11:39:43.000000000 -0400 -+++ osb-jscore-0.5.0/configure.in 2005-02-02 17:36:36.551550088 -0500 -@@ -18,6 +18,8 @@ - AC_CHECK_HEADERS(string.h strings.h float.h) - - -+# isnan & friends generally come from libm, so link to it if its available -+AC_CHECK_LIB(m, sin) - - AC_CHECK_FUNCS(isnan,[ - AC_DEFINE(HAVE_FUNC_ISNAN,[],[Define to 1 if you have isnan function.]) diff --git a/packages/gtk-webcore/files/no-pedantic.patch b/packages/gtk-webcore/files/no-pedantic.patch deleted file mode 100644 index faabbbf15f..0000000000 --- a/packages/gtk-webcore/files/no-pedantic.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- osb-browser-0.5.0.orig/configure.in 2004-10-18 17:40:28.000000000 +0200 -+++ osb-browser-0.5.0/configure.in 2004-10-24 01:23:26.000000000 +0200 -@@ -54,7 +54,7 @@ - if test "x$GCC" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; -- *) CFLAGS="$CFLAGS -Wall -Werror -ansi -pedantic" ;; -+ *) CFLAGS="$CFLAGS -Wall -Werror -ansi" ;; - esac - fi - changequote([,])dnl diff --git a/packages/gtk-webcore/files/path_fixes.patch b/packages/gtk-webcore/files/path_fixes.patch deleted file mode 100644 index adb27bdd85..0000000000 --- a/packages/gtk-webcore/files/path_fixes.patch +++ /dev/null @@ -1,15 +0,0 @@ -Index: NRCore/configure.in -=================================================================== ---- NRCore.orig/configure.in 2008-02-29 11:01:14.000000000 +0000 -+++ NRCore/configure.in 2008-02-29 12:45:18.000000000 +0000 -@@ -67,8 +67,8 @@ - AC_MSG_RESULT([found. Using prefix $jscore_prefix]) - JSCORE_ENABLE=yes - AC_SUBST(JSCORE_ENABLE) -- JSCORE_LIBS="-L$jscore_prefix/lib -ljscore" -- JSCORE_CFLAGS="-I$jscore_prefix/include/gtk-webcore-jscore/" -+ JSCORE_LIBS="-L$jscore_prefix/lib -lgtk_webcore_jscore" -+ JSCORE_CFLAGS="-I$jscore_prefix/include/gtk-webcore/" - jscore_pkgdatadir="$jscore_prefix/share/gtk-webcore-jscore" - else - AC_MSG_ERROR([JavaScriptCore not found. Use --with-javascriptcore-prefix=PREFIX]) diff --git a/packages/gtk-webcore/files/setHandle_segfault-fix.patch b/packages/gtk-webcore/files/setHandle_segfault-fix.patch deleted file mode 100644 index 9ebdfeebe5..0000000000 --- a/packages/gtk-webcore/files/setHandle_segfault-fix.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- NRCore/kwiq/KWQResourceLoader.cpp.orig 2006-01-21 00:13:32.000000000 +0200 -+++ NRCore/kwiq/KWQResourceLoader.cpp 2006-01-20 23:52:59.000000000 +0200 -@@ -56,8 +56,11 @@ - void KWQResourceLoader::setHandle(WebCoreResourceHandle* handle) - { - ASSERT(!_handle); -- handle->retain(); -- _handle = handle; -+ if (handle) -+ { -+ handle->retain(); -+ _handle = handle; -+ } - } - - void KWQResourceLoader::receivedResponse(KWIQResponse* response) diff --git a/packages/gtk-webcore/files/stop-load.image-loading.patch b/packages/gtk-webcore/files/stop-load.image-loading.patch deleted file mode 100644 index 47200825c0..0000000000 --- a/packages/gtk-webcore/files/stop-load.image-loading.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- NRCit/src/frameimpl.cpp.orig 2005-02-16 11:33:16.000000000 +0200 -+++ NRCit/src/frameimpl.cpp 2005-10-28 00:44:15.000000000 +0300 -@@ -152,6 +152,7 @@ - - void FrameImpl::stopLoad() - { -+ frameLoadDelegate()->onFrameLoadFinished(this, 1); - closeURL(); - } - ---- NRCit/src/ImageRenderer.cpp.orig 2005-02-16 11:33:16.000000000 +0200 -+++ NRCit/src/ImageRenderer.cpp 2005-10-28 20:43:42.000000000 +0300 -@@ -133,19 +133,19 @@ - g_object_ref(pixbuf); - } else { - // not loading -- if (ir.anim) { -+ /*if (ir.anim) { - // is an animation => get own pixbuf, owned by iterator - anim = ir.anim; - g_object_ref(anim); - assert(ir.iter); - iter = gdk_pixbuf_animation_get_iter(anim, NULL); -- } else { -+ } else {*/ - // not an animation - assert(!ir.iter); - pixbuf = ir.pixbuf; - if (pixbuf) - g_object_ref(pixbuf); -- } -+ //} - } - } - -@@ -415,7 +417,7 @@ - - void ImageRenderer::stopAnimation() - { -- //stopped = true; -+ stopped = true; - } - - void ImageRenderer::tileInRect(GdkRectangle* r, int sx, int sy, CGContextRef context) |