summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-02-23 23:43:06 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-02-23 23:43:06 +0000
commite912ad9d35ed76a8cd5f9688c7ef597029a9bc43 (patch)
tree28e802469cd243de66f0a19f4f87502194184b71 /apps/Makefile
parentaf1331ad567d13b7d56b14ede61d6838d7d6b137 (diff)
Move conditional compilation for CURL from apps/ to funcs/
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10961 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 988645d61..6b6d9ae3a 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -32,14 +32,6 @@ ifeq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/osp/osp.h $(CROSS_COM
MODS:=$(filter-out app_osplookup.so,$(MODS))
endif
-ifneq ($(shell if [[ 0x`$(CROSS_COMPILE_BIN)curl-config --vernum` -ge 0x70907 ]]; then echo "OK" ; fi),)
- CURLLIBS:=$(shell $(CROSS_COMPILE_BIN)curl-config --libs)
-endif
-
-ifeq (${CURLLIBS},)
- MODS:=$(filter-out app_curl.so,$(MODS))
-endif
-
ifneq (${WITH_SMDI},)
CFLAGS+=-DWITH_SMDI
endif
@@ -83,9 +75,6 @@ install: all
uninstall:
-app_curl.so: app_curl.o
- $(CC) $(SOLINK) -o $@ ${CYGSOLINK} $< ${CYGSOLIB} $(CURLLIBS)
-
look: look.c
$(CC) -pipe -O6 -g look.c -o look -lncurses