From 5599da95817cabb759f294e91d50e31b5c56ef9c Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sun, 25 Sep 2005 20:50:40 +0000 Subject: [PATCH] support new version of OSP toolkit (issue #5168) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6653 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 8 ++++++-- apps/Makefile | 2 +- res/Makefile | 9 +++++++-- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index fcb9d7686a..914f388c57 100755 --- a/Makefile +++ b/Makefile @@ -226,8 +226,12 @@ ifeq ($(PROC),ppc) ASTCFLAGS+=-fsigned-char endif -ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/osp/osp.h),) - ASTCFLAGS+=-DOSP_SUPPORT -I$(CROSS_COMPILE_TARGET)/usr/include/osp +ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/osp/osp.h),) + ASTCFLAGS+=-DOSP_SUPPORT -I$(CROSS_COMPILE_TARGET)/usr/local/include/osp +else + ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/osp/osp.h),) + ASTCFLAGS+=-DOSP_SUPPORT -I$(CROSS_COMPILE_TARGET)/usr/include/osp + endif endif ifeq (${OSARCH},FreeBSD) diff --git a/apps/Makefile b/apps/Makefile index 1de3db955e..5bc26a91a0 100755 --- a/apps/Makefile +++ b/apps/Makefile @@ -47,7 +47,7 @@ ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/linux/zaptel.h)$(wildcard APPS+=app_zapras.so app_meetme.so app_flash.so app_zapbarge.so app_zapscan.so endif -ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/osp/osp.h),) +ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/osp/osp.h $(CROSS_COMPILE_TARGET)/usr/include/osp/osp.h),) APPS+=app_osplookup.so endif diff --git a/res/Makefile b/res/Makefile index 5804b21717..4386f05dba 100755 --- a/res/Makefile +++ b/res/Makefile @@ -23,9 +23,14 @@ ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/odbcinst.h)$(wildcard $(CR MODS+=res_odbc.so endif -ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/osp/osp.h),) +ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/osp/osp.h),) MODS+=res_osp.so - OSPLIB=$(CROSS_COMPILE_TARGET)/usr/lib/libosp.a + OSPLIB=$(CROSS_COMPILE_TARGET)/usr/local/lib/libosptk.a +else + ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/osp/osp.h),) + MODS+=res_osp.so + OSPLIB=$(CROSS_COMPILE_TARGET)/usr/lib/libosp.a + endif endif ifeq ($(findstring BSD,${OSARCH}),BSD)