[gamin] Bug 588338 - Enable linux specific features on armel



commit 05dcfcd69848e119c6a30d363bc41e896029f8af
Author: Sebastian Dröge <slomo debian org>
Date:   Tue Dec 15 13:24:25 2009 +0100

    Bug 588338 - Enable linux specific features on armel

 configure.in |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/configure.in b/configure.in
index b0bbaec..e4b684e 100644
--- a/configure.in
+++ b/configure.in
@@ -176,7 +176,7 @@ fi
 
 dnl check what OS we're on
 #AM_CONDITIONAL(HAVE_LINUX, test x$target_os = xlinux-gnu)
-if test x$target_os = xlinux-gnu; then
+if test x$target_os = xlinux-gnu -o x$target_os = xlinux-gnueabi; then
 	AC_DEFINE([HAVE_LINUX],[],[Whether we are using linux or not])
 fi
 
@@ -223,7 +223,7 @@ fi
 dnl check if inotify backend is enabled
 AM_CONDITIONAL(ENABLE_INOTIFY, test x$inotify = xtrue)
 
-if test x$os = xlinux-gnu; then
+if test x$os = xlinux-gnu -o x$os = xlinux-gnueabi; then
 	AC_ARG_ENABLE(dnotify,
 		AC_HELP_STRING([--disable-dnotify], [Disable the DNotify backend]),
 		[dnotify="${enableval}"], [dnotify=true])
@@ -297,10 +297,12 @@ else
 fi
 
 dnl Use weak symbols on linux/gcc to avoid imposing libpthreads to apps
-if test x$os = xlinux-gnu -a x$WITH_THREADS = x1 ; then
-    if test "${CC}" = "gcc" ; then
-        echo Use weak symbols !
-        THREAD_LIBS=
+if test x$os = xlinux-gnu -o x$os = xlinux-gnueabi ; then
+    if test x$WITH_THREADS = x1 ; then
+      if test "${CC}" = "gcc" ; then
+          echo Use weak symbols !
+          THREAD_LIBS=
+      fi
     fi
 fi	
 AC_SUBST(THREAD_LIBS)



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