summaryrefslogtreecommitdiff
path: root/packages/libsigcx/libsigcx0/libsigcx-0.6.4-fix-ac-try-run-swb.patch
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/libsigcx/libsigcx0/libsigcx-0.6.4-fix-ac-try-run-swb.patch
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (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/libsigcx/libsigcx0/libsigcx-0.6.4-fix-ac-try-run-swb.patch')
-rw-r--r--packages/libsigcx/libsigcx0/libsigcx-0.6.4-fix-ac-try-run-swb.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/libsigcx/libsigcx0/libsigcx-0.6.4-fix-ac-try-run-swb.patch b/packages/libsigcx/libsigcx0/libsigcx-0.6.4-fix-ac-try-run-swb.patch
deleted file mode 100644
index 66d6353777..0000000000
--- a/packages/libsigcx/libsigcx0/libsigcx-0.6.4-fix-ac-try-run-swb.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-2005-05-06 Steven Brown <swbrown@ucsd.edu>
-
- * scripts/macros.m4: Assume the AC_TRY_RUN test of exceptions worked
- if we were cross compiling (and therefore can't use AC_TRY_RUN).
-
-
-diff -ruN libsigcx-old/scripts/macros.m4 libsigcx/scripts/macros.m4
---- libsigcx-old/scripts/macros.m4 2005-05-06 21:04:44.000000000 -0700
-+++ libsigcx/scripts/macros.m4 2005-05-06 21:07:40.000000000 -0700
-@@ -68,6 +68,10 @@
- AC_MSG_CHECKING([whether the C++ compiler ($CXX $CXXFLAGS) has correct exception handling])
- AC_CACHE_VAL(ac_cv_cxx_eh,
- [
-+if test x"$cross_compiling" = x"yes"; then
-+ dnl Assume true when cross compiling.
-+ ac_cv_cxx_eh=yes
-+else
- AC_TRY_RUN(
- [
- #include <stdexcept>
-@@ -92,7 +96,7 @@
- ],
- ac_cv_cxx_eh=yes,
- ac_cv_cxx_eh=no)
--])
-+fi])
- AC_MSG_RESULT([$ac_cv_cxx_eh])
- if test "x$ac_cv_cxx_eh" = "xyes"
- then