[asterisk-commits] russell: branch russell/bindings r103752 - in /team/russell/bindings: binding...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Feb 17 21:02:54 CST 2008
Author: russell
Date: Sun Feb 17 21:02:53 2008
New Revision: 103752
URL: http://svn.digium.com/view/asterisk?view=rev&rev=103752
Log:
svn mv res/res_python res/python
Added:
team/russell/bindings/res/python/
- copied from r103750, team/russell/bindings/res/res_python/
Removed:
team/russell/bindings/res/res_python/
Modified:
team/russell/bindings/bindings/ast_channel.i
team/russell/bindings/res/Makefile
team/russell/bindings/res/res_python.c
Modified: team/russell/bindings/bindings/ast_channel.i
URL: http://svn.digium.com/view/asterisk/team/russell/bindings/bindings/ast_channel.i?view=diff&rev=103752&r1=103751&r2=103752
==============================================================================
--- team/russell/bindings/bindings/ast_channel.i (original)
+++ team/russell/bindings/bindings/ast_channel.i Sun Feb 17 21:02:53 2008
@@ -7,7 +7,7 @@
#include "asterisk/app.h"
#include "asterisk/threadstorage.h"
-#include "res_python/res_python.h"
+#include "python/res_python.h"
AST_THREADSTORAGE(ast_channel_get_var_buf);
#define GET_VAR_BUF_LEN 1024
Modified: team/russell/bindings/res/Makefile
URL: http://svn.digium.com/view/asterisk/team/russell/bindings/res/Makefile?view=diff&rev=103752&r1=103751&r2=103752
==============================================================================
--- team/russell/bindings/res/Makefile (original)
+++ team/russell/bindings/res/Makefile Sun Feb 17 21:02:53 2008
@@ -49,13 +49,13 @@
ael/pval.o: ael/pval.c
PYTHON_WRAPPERS:=python_ast_cdr_wrap.o python_ast_channel_wrap.o
-RES_PYTHON_OBJS:=res_python.o res_python/cdr.o res_python/channel.o
+RES_PYTHON_OBJS:=res_python.o python/cdr.o python/channel.o
res_python.so: $(RES_PYTHON_OBJS) $(PYTHON_WRAPPERS)
-res_python/channel.o: ASTCFLAGS+=$(PYTHON_INCLUDE)
+python/channel.o: ASTCFLAGS+=$(PYTHON_INCLUDE)
-res_python/cdr.o: ASTCFLAGS+=$(PYTHON_INCLUDE)
+python/cdr.o: ASTCFLAGS+=$(PYTHON_INCLUDE)
python_ast_channel_wrap.o: ASTCFLAGS+=$(PYTHON_INCLUDE)
@@ -70,5 +70,5 @@
clean::
rm -f snmp/*.o
rm -f ael/*.o
- rm -f res_python/*.o
+ rm -f python/*.o
rm -f $(PYTHON_WRAPPERS:.o=.c)
Modified: team/russell/bindings/res/res_python.c
URL: http://svn.digium.com/view/asterisk/team/russell/bindings/res/res_python.c?view=diff&rev=103752&r1=103751&r2=103752
==============================================================================
--- team/russell/bindings/res/res_python.c (original)
+++ team/russell/bindings/res/res_python.c Sun Feb 17 21:02:53 2008
@@ -39,7 +39,7 @@
#include "asterisk/cli.h"
#include "asterisk/paths.h"
-#include "res_python/res_python.h"
+#include "python/res_python.h"
PyThreadState *main_thread_state;
More information about the asterisk-commits
mailing list