Re: [Ekiga-devel-list] [PATCH] allow ekiga ARM EABI build



Lennert Buytenhek wrote:
ARM EABI systems have a target "triple" that ends in linux-gnueabi,
not in linux-gnu, and ekiga doesn't seem to deal with this (I checked
the latest release, which is 2.0.9, and the issue seems to be still
there.)  The attached patch fixes it, please consider applying.

Thanks for your time.


--- ekiga-2.0.9/configure.orig	2007-06-13 19:37:38.000000000 -0400
+++ ekiga-2.0.9/configure	2007-06-13 19:37:55.000000000 -0400
@@ -21961,7 +21961,7 @@ echo "${ECHO_T}yes" >&6; }
     gm_platform="solaris"
     ;;
- linux-gnu | linux | Linux)
+  linux-gnu | linux-gnueabi | linux | Linux)
     ARCH_OPAL_CFLAGS="-DPTRACING -DNDEBUG -Wall -Os -g -fno-exceptions -felide-constructors"
     ARCH_OPAL_LIBS="-lpt -lopal -ldl -lpthread"
     { echo "$as_me:$LINENO: result: yes" >&5

The configure script is generated from the configure.in, so no need to touch it ; just run autoconf.

--- ekiga-2.0.9/configure.in.orig	2007-06-13 19:37:34.000000000 -0400
+++ ekiga-2.0.9/configure.in	2007-06-13 19:37:49.000000000 -0400
@@ -148,7 +148,7 @@ case $target_os in
     gm_platform="solaris"
     ;;
- linux-gnu | linux | Linux)
+  linux-gnu | linux-gnueabi | linux | Linux)
     ARCH_OPAL_CFLAGS="-DPTRACING -DNDEBUG -Wall -Os -g -fno-exceptions -felide-constructors"
     ARCH_OPAL_LIBS="-lpt -lopal -ldl -lpthread"
     AC_MSG_RESULT([yes])

I applied to trunk, thanks.

Still, if it builds, does it work ?

Snark



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]