]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
this is the correct values
authorBrian West <brian@freeswitch.org>
Mon, 29 Jan 2007 15:34:38 +0000 (15:34 +0000)
committerBrian West <brian@freeswitch.org>
Mon, 29 Jan 2007 15:34:38 +0000 (15:34 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4076 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/codecs/mod_g723_1/Makefile
src/mod/codecs/mod_g723_1/mod_g723_1.c
src/mod/codecs/mod_g729/mod_g729.c

index 5ace0cdabba2fe476201f5395f5b1af70a891ec5..0c885fec19276ff4f731b680c0a3861973f50cd7 100644 (file)
@@ -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
 
index 9196c7f91d15ca0f06f26b9d5e6fa34ffaf1878a..7eee68c962c8ba0aeac23ca81449d6c6046d4607 100644 (file)
@@ -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
index 90857372b3cc922f2ff2696177a5c230d6fd42d7..dbc1a066652457b5eaa65156fdb1e18b94e9ca1c 100644 (file)
@@ -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;