diff options
author | Richard Purdie <richard@openedhand.com> | 2008-10-20 13:18:49 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-10-20 13:18:49 +0000 |
commit | 7a0ee99499ac8e325e5699edaa744a290c70cc98 (patch) | |
tree | 1ccfbadac068a58cf929ca169174d32dc116022b | |
parent | 78fd54f3714a2612c0fa6142c8259151dde45e1d (diff) | |
download | openembedded-core-7a0ee99499ac8e325e5699edaa744a290c70cc98.tar.gz openembedded-core-7a0ee99499ac8e325e5699edaa744a290c70cc98.tar.bz2 openembedded-core-7a0ee99499ac8e325e5699edaa744a290c70cc98.zip |
libsyncml: Remove insane piece of strange assembler
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5548 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/opensync/libsyncml/remove-insane-assembler.patch | 12 | ||||
-rw-r--r-- | meta/packages/opensync/libsyncml_0.4.7.bb | 6 |
2 files changed, 17 insertions, 1 deletions
diff --git a/meta/packages/opensync/libsyncml/remove-insane-assembler.patch b/meta/packages/opensync/libsyncml/remove-insane-assembler.patch new file mode 100644 index 0000000000..ad3ba01a2c --- /dev/null +++ b/meta/packages/opensync/libsyncml/remove-insane-assembler.patch @@ -0,0 +1,12 @@ +Index: libsyncml-0.4.7/tests/check_http.c +=================================================================== +--- libsyncml-0.4.7.orig/tests/check_http.c 2008-10-20 14:16:26.000000000 +0100 ++++ libsyncml-0.4.7/tests/check_http.c 2008-10-20 14:16:53.000000000 +0100 +@@ -221,7 +221,6 @@ + + break; + default: +- __asm__("int $3"); + fail(NULL); + } + diff --git a/meta/packages/opensync/libsyncml_0.4.7.bb b/meta/packages/opensync/libsyncml_0.4.7.bb index 47296248a8..e9e7d14754 100644 --- a/meta/packages/opensync/libsyncml_0.4.7.bb +++ b/meta/packages/opensync/libsyncml_0.4.7.bb @@ -2,9 +2,11 @@ DESCRIPTION = "Libsyncml is a implementation of the SyncML protocol." HOMEPAGE = "http://libsyncml.opensync.org/" LICENSE = "LGPL" DEPENDS = "sed-native wbxml2 libsoup libxml2 bluez-libs openobex check" +PR = "r1" SRC_URI = "http://libsyncml.opensync.org/download/releases/${PV}/libsyncml-${PV}.tar.bz2 \ - file://build-in-src.patch;patch=1" + file://build-in-src.patch;patch=1 \ + file://remove-insane-assembler.patch;patch=1" inherit cmake pkgconfig @@ -16,3 +18,5 @@ PACKAGES += "${PN}-tools" FILES_${PN}-tools = "${bindir}" FILES_${PN} = "${libdir}/*.so.*" + +export VERBOSE=1
\ No newline at end of file |