summaryrefslogtreecommitdiff
path: root/funcs/Makefile
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2006-01-24 13:53:45 +0000
committerOlle Johansson <oej@edvina.net>2006-01-24 13:53:45 +0000
commit543cc7e2a4cbd60f1dd396300369f17c2d54eb77 (patch)
treecfba94b60553911c0e97dd9005b24a8ab6819a9b /funcs/Makefile
parentbe28dc1be886704b4e8dc29666ac875088fd9dba (diff)
Issue #6323, FreeBSD compatibility with compilation of func_odbc.c (reported by nulbyte)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8539 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/Makefile')
-rw-r--r--funcs/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/funcs/Makefile b/funcs/Makefile
index 773594c64..2cafa3d1a 100644
--- a/funcs/Makefile
+++ b/funcs/Makefile
@@ -34,6 +34,12 @@ else
STANDALONE_FUNCS=$(AVAILABLE_FUNCS)
endif
+ifeq ($(findstring BSD,${OSARCH}),BSD)
+ CFLAGS+=-I$(CROSS_COMPILE_TARGET)/usr/local/include
+ SOLINK+=-L$(CROSS_COMPILE_TARGET)/usr/local/lib
+endif
+
+
FUNCS+=$(STANDALONE_FUNCS:.o=.so)
FUNC_SOURCES=$(BUILTINS:.o=.c)