diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2010-03-31 21:12:35 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2010-03-31 21:12:35 (GMT) | 
| commit | 7cbdd17b441b35d48624956aa438bde69f18bc37 (patch) | |
| tree | 438af8d0a994d6e203cf66ea91cf336bb071ee44 /ChangeLog | |
| parent | d5e55f2ad015781bd7bee0e3216e47d6218e0841 (diff) | |
Implemented first steps to a Python plugins support.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@146 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 75 | 
1 files changed, 75 insertions, 0 deletions
| @@ -1,3 +1,78 @@ +10-03-31  Cyrille Bagard <nocbos@gmail.com> + +	* configure.ac: +	Add the new Makefiles from the 'plugins/pyoida/*' directories to +	AC_CONFIG_FILES. + +	* plugins/pyoida/analysis/binary.c: +	* plugins/pyoida/analysis/binary.h: +	* plugins/pyoida/analysis/exporter.c: +	* plugins/pyoida/analysis/exporter.h: +	* plugins/pyoida/analysis/exporter-int.h: +	* plugins/pyoida/analysis/line.c: +	* plugins/pyoida/analysis/line.h: +	* plugins/pyoida/analysis/Makefile.am: +	* plugins/pyoida/analysis/module.c: +	* plugins/pyoida/analysis/module.h: +	* plugins/pyoida/analysis/roptions.c: +	* plugins/pyoida/analysis/roptions.h: +	* plugins/pyoida/arch/archbase.c: +	* plugins/pyoida/arch/archbase.h: +	* plugins/pyoida/arch/Makefile.am: +	* plugins/pyoida/arch/module.c: +	* plugins/pyoida/arch/module.h: +	* plugins/pyoida/arch/processor.c: +	* plugins/pyoida/arch/processor.h: +	* plugins/pyoida/format/executable.c: +	* plugins/pyoida/format/executable.h: +	* plugins/pyoida/format/Makefile.am: +	* plugins/pyoida/format/module.c: +	* plugins/pyoida/format/module.h: +	* plugins/pyoida/Makefile.am: +	* plugins/pyoida/plugin.c: +	* plugins/pyoida/plugin.h: +	* plugins/pyoida/pyoida.c: +	* plugins/python/lnxsyscalls/lnxsyscalls.py: +	New entries: implement first steps to a Python plugins support. + +	* src/analysis/exporter-int.h: +	Typo. + +	* src/analysis/line.c: +	Add functions to set or get comments. Provide the previous line +	of a given one. + +	* src/analysis/line_code.c: +	Improve the speed of exporting to GTK buffers. + +	* src/analysis/line.h: +	* src/analysis/line-int.h: +	Add functions to set or get comments. Provide the previous line +	of a given one. + +	* src/common/dllist.h: +	Add a function to retrieve the previous item. + +	* src/common/environment.c: +	* src/common/environment.h: +	New entries: deal with environment variables. + +	* src/common/Makefile.am: +	Add environment.[ch] to libcommon_la_SOURCES. + +	* src/plugins/Makefile.am: +	Add plugin-int.h to libplugins_la_SOURCES. + +	* src/plugins/pglist.c: +	Allow extern code to add plugins. + +	* src/plugins/plugin.c: +	* src/plugins/plugin-def.h: +	Move some parts of the plugins definition. + +	* src/plugins/plugin-int.h: +	New entry: move some parts of the plugins definition. +  10-03-28  Cyrille Bagard <nocbos@gmail.com>  	* src/analysis/binary.c: | 
