From 71ba0631e3f0d50c1b3e19c6282fe362a5d63ee7 Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Tue, 20 Jan 2009 21:23:34 +0000 Subject: Some distributions have backported the hrtimer_get_expires and hrtimer_set_expires functions from 2.6.28. Therefore, dahdi-linux cannot use the linux version code to determine if these functions are present or not. This patch actively checks for those functions. Closes Issue: #14166 Thanks to bergolth for the patch. git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@5770 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- drivers/dahdi/Kbuild | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'drivers/dahdi/Kbuild') diff --git a/drivers/dahdi/Kbuild b/drivers/dahdi/Kbuild index c5742b9..6e3f7a1 100644 --- a/drivers/dahdi/Kbuild +++ b/drivers/dahdi/Kbuild @@ -56,6 +56,10 @@ ifneq (,$(filter $(KVERS),$(BAD_KERNELS))) EXTRA_CFLAGS+=-Drw_lock_t=rwlock_t endif +ifeq (1,$(shell fgrep -q ' hrtimer_set_expires' include/linux/hrtimer.h 2>/dev/null && echo 1)) +EXTRA_CFLAGS+=-DHAVE_HRTIMER_ACCESSORS=1 +endif + dahdi-objs := dahdi-base.o dahdi_echocan_hpec-objs := hpec/dahdi_echocan_hpec.o -- cgit v1.2.3