From: Brian West Date: Mon, 29 Jan 2007 15:34:38 +0000 (+0000) Subject: this is the correct values X-Git-Tag: v1.0-beta1~1276 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fcb152104f4fc71b9c83383e4cd1d84491cb2953;p=thirdparty%2Ffreeswitch.git this is the correct values git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4076 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/codecs/mod_g723_1/Makefile b/src/mod/codecs/mod_g723_1/Makefile index 5ace0cdabb..0c885fec19 100644 --- a/src/mod/codecs/mod_g723_1/Makefile +++ b/src/mod/codecs/mod_g723_1/Makefile @@ -1,7 +1,7 @@ ifeq ($(shell ls -d $(BASE)/libs/libg723_1),$(BASE)/libs/libg723_1) -CFLAGS += -I$(PREFIX)/include/libg723_1 -LDFLAGS +=-lg723_1 +CFLAGS += -I$(PREFIX)/include/g723 +LDFLAGS +=-lg723 else diff --git a/src/mod/codecs/mod_g723_1/mod_g723_1.c b/src/mod/codecs/mod_g723_1/mod_g723_1.c index 9196c7f91d..7eee68c962 100644 --- a/src/mod/codecs/mod_g723_1/mod_g723_1.c +++ b/src/mod/codecs/mod_g723_1/mod_g723_1.c @@ -34,7 +34,7 @@ #include "switch.h" #ifndef G723_PASSTHROUGH -#include "g723_1.h" +#include "g723/g723.h" #define TYPE_HIGH 0x0 #define TYPE_LOW 0x1 diff --git a/src/mod/codecs/mod_g729/mod_g729.c b/src/mod/codecs/mod_g729/mod_g729.c index 90857372b3..dbc1a06665 100644 --- a/src/mod/codecs/mod_g729/mod_g729.c +++ b/src/mod/codecs/mod_g729/mod_g729.c @@ -37,7 +37,7 @@ static const char modname[] = "mod_g729"; #include "switch.h" #ifndef G729_PASSTHROUGH -#include "g729.h" +#include "g729/g729.h" struct g729_context { struct dec_state decoder_object;