123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- From 05dcfcd69848e119c6a30d363bc41e896029f8af Mon Sep 17 00:00:00 2001
- From: Sebastian Dröge <slomo@debian.org>
- Date: Tue, 15 Dec 2009 12:24:25 +0000
- Subject: Bug 588338 - Enable linux specific features on armel
- ---
- 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)
- --
- cgit v0.9.0.2
|