]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Comment out the parts in the Makefile that make codec_zap get built. It will
authorRussell Bryant <russell@russellbryant.com>
Tue, 30 Jan 2007 15:35:23 +0000 (15:35 +0000)
committerRussell Bryant <russell@russellbryant.com>
Tue, 30 Jan 2007 15:35:23 +0000 (15:35 +0000)
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

codecs/Makefile

index 8fa45410953801741da299da611fe28da64aa066..915a048e93e7f5e0e008acd0320ec7024ecbef2f 100644 (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)