aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-15 21:39:26 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-15 21:39:26 +0000
commite63bd04ff0d26d72233e09f24a972d35f752b0fe (patch)
tree05bd9b6d6ee6257d0f444f539cee521b62cfe616 /funcs
parentf3b8ad2720ead8b987c52b6bd10087273a1b8e62 (diff)
Move curl version test to autoconf script
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37678 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/Makefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/funcs/Makefile b/funcs/Makefile
index b16355c03..7da134236 100644
--- a/funcs/Makefile
+++ b/funcs/Makefile
@@ -19,17 +19,6 @@ CC_MODS:=$(filter-out $(MENUSELECT_FUNCS),$(patsubst %.cc,%,$(wildcard func_*.cc
SELECTED_MODS:=$(C_MODS) $(CC_MODS)
-# TODO This check needs to be handled with autoconf
-ifeq ($(OSARCH),SunOS)
- ifeq ($(shell if [ 0x`$(CROSS_COMPILE_BIN)curl-config --vernum` -ge 0x70907 ]; then echo "OK" ; fi),)
- MODS:=$(filter-out func_curl,$(MODS))
- endif
-else
- ifeq ($(shell if [[ 0x`$(CROSS_COMPILE_BIN)curl-config --vernum` -ge 0x70907 ]]; then echo "OK" ; fi),)
- MODS:=$(filter-out func_curl,$(MODS))
- endif
-endif
-
all: _all
include $(ASTTOPDIR)/Makefile.moddir_rules