summaryrefslogtreecommitdiff
path: root/channels/Makefile
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-01-04 23:33:59 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-01-04 23:33:59 +0000
commitce81ea81221ba91c5931ead9b437b0fec4c5ad7c (patch)
tree0a84c2b5be2406fc5bdc8808c6517345c781c942 /channels/Makefile
parentc3ce1852bce480784b2aec840689597e40b691c8 (diff)
remove deprecated chan_modem drivers
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7802 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/Makefile')
-rw-r--r--channels/Makefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/channels/Makefile b/channels/Makefile
index 314a9ee61..56935d941 100644
--- a/channels/Makefile
+++ b/channels/Makefile
@@ -16,11 +16,6 @@
CHANNEL_LIBS=chan_sip.so chan_agent.so chan_mgcp.so chan_iax2.so chan_local.so chan_skinny.so chan_features.so
-ifneq (${OSARCH},CYGWIN)
-# if you really, really want to use these drivers, uncomment the line below
-#CHANNEL_LIBS+=chan_modem.so chan_modem_aopen.so chan_modem_bestdata.so
-endif
-
ifeq ($(findstring BSD,${OSARCH}),BSD)
CFLAGS+=-I$(CROSS_COMPILE_TARGET)/usr/local/include -L$(CROSS_COMPILE_TARGET)/usr/local/lib
endif
@@ -61,9 +56,6 @@ endif
ifneq (${OSARCH},Darwin)
ifneq (${OSARCH},SunOS)
ifneq (${OSARCH},CYGWIN)
-# the ISDN4Linux channel driver is probably broken on all modern kernels,
-# but if you wish to try to use it, uncomment the line below
-# CHANNEL_LIBS+=chan_modem_i4l.so
CHANNEL_LIBS+=chan_oss.so
endif
endif
@@ -242,9 +234,6 @@ chan_misdn.so: chan_misdn.o chan_misdn_config.o misdn/chan_misdn_lib.a
chan_misdn.o: chan_misdn.c
$(CC) $(CFLAGS) -DCHAN_MISDN_VERSION=\"0.2.1\" -c $< -o $@
-#chan_modem.so : chan_modem.o
-# $(CC) -rdynamic -shared -Xlinker -x -o $@ $<
-
install: all
for x in $(CHANNEL_LIBS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(MODULES_DIR) ; done
if ! [ -f chan_iax.so ]; then rm -f $(DESTDIR)$(MODULES_DIR)/chan_iax.so ; fi