Comment out the parts in the Makefile that make codec_zap get built. It will

not yet build against zaptel 1.2, so I am disabling it to prevent further bug
reports until it gets merged.
(issue #8940)


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@52857 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2007-01-30 15:35:23 +00:00
parent ec4c828386
commit 29d168987c

View File

@@ -28,18 +28,18 @@ ifneq ($(wildcard g723.1b/coder2.c),)
LIBG723B=g723.1b/libg723b.a
endif
ifndef WITHOUT_ZAPTEL
ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/linux/zaptel.h)$(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/zaptel.h)$(wildcard $(CROSS_COMPILE_TARGET)/usr/pkg/include/zaptel.h),)
ifeq (${OSARCH},NetBSD)
SOLINK+=-L$(CROSS_COMPILE_TARGET)/usr/pkg/lib
endif
ifeq (${OSARCH},FreeBSD)
SOLINK+=-L$(CROSS_COMPILE_TARGET)/usr/local/lib
endif
CODECS+=codec_zap.so
endif
endif # WITHOUT_ZAPTEL
# XXX Uncomment this when transcoder support is merged into zaptel 1.2 !
#ifndef WITHOUT_ZAPTEL
#ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/linux/zaptel.h)$(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/zaptel.h)$(wildcard $(CROSS_COMPILE_TARGET)/usr/pkg/include/zaptel.h),)
# ifeq (${OSARCH},NetBSD)
# SOLINK+=-L$(CROSS_COMPILE_TARGET)/usr/pkg/lib
# endif
# ifeq (${OSARCH},FreeBSD)
# SOLINK+=-L$(CROSS_COMPILE_TARGET)/usr/local/lib
# endif
# CODECS+=codec_zap.so
#endif
#endif # WITHOUT_ZAPTEL
UI_SPEEX=$(wildcard $(CROSS_COMPILE_TARGET)/usr/include/speex.h)
UIS_SPEEX=$(wildcard $(CROSS_COMPILE_TARGET)/usr/include/speex/speex.h)