aboutsummaryrefslogtreecommitdiffstats
path: root/apps/Makefile
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-23 23:43:06 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-23 23:43:06 +0000
commit4f1ce1ea492dddb54662568e1effce3e76c18e0f (patch)
tree28e802469cd243de66f0a19f4f87502194184b71 /apps/Makefile
parent00eb2ed1c118b9b24bc6c18da229e35ad7fc430e (diff)
Move conditional compilation for CURL from apps/ to funcs/
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@10961 f38db490-d61c-443f-a65b-d21fe96a405b
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