diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-08-12 23:32:21 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-08-12 23:32:21 (GMT) |
commit | 9cfe738c2e9bb49eb2872e92bc4422c548edb517 (patch) | |
tree | ee8dbe5965b9d46394395b8beee87676e098a9f1 /ChangeLog | |
parent | fc49e98dc2b3e0ae08a5874ecacaef046a0f3ec1 (diff) |
Cleaned the code and handled file binaries properly.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@259 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 97 |
1 files changed, 97 insertions, 0 deletions
@@ -1,3 +1,100 @@ +12-08-13 Cyrille Bagard <nocbos@gmail.com> + + * configure.ac: + Add the new Makefile from the 'src/analysis/binaries directory + to AC_CONFIG_FILES. + + * plugins/dexresolver/context.c: + * plugins/dexresolver/context.h: + * plugins/dexresolver/plugin.c: + * plugins/dexresolver/plugin.h: + * plugins/pychrysa/analysis/binary.c: + * plugins/pychrysa/analysis/binary.h: + * plugins/pychrysa/analysis/py_binary.c: + * plugins/pychrysa/analysis/py_binary.h: + * plugins/pychrysa/plugin.c: + * plugins/stackvars/stackvars.c: + * plugins/stackvars/stackvars.h: + * plugins/theseus/theseus.c: + * plugins/theseus/theseus.h: + Update code. + + * src/analysis/binaries/file.c: + * src/analysis/binaries/file.h: + * src/analysis/binaries/Makefile.am: + New entries: handle file binaries properly. + + * src/analysis/binary.c: + * src/analysis/binary.h: + Clean and update the code. + + * src/analysis/binary-int.h: + New entry: store the code shared by binaries here. + + * src/analysis/decomp/decompiler.c: + * src/analysis/decomp/decompiler.h: + * src/analysis/disass/disassembler.c: + * src/analysis/disass/disassembler.h: + * src/analysis/disass/fetch.c: + * src/analysis/disass/fetch.h: + Update code. + + * src/analysis/Makefile.am: + Add the binaries/libanalysisbinaries.la file to libanalysis_la_LIBADD + and binaries to SUBDIRS. + + * src/debug/debugger.c: + * src/debug/debugger.h: + * src/debug/debugger-int.h: + * src/debug/jdwp/debugger.c: + * src/debug/jdwp/debugger.h: + * src/debug/remgdb/gdb.c: + * src/debug/remgdb/gdb.h: + * src/dialogs/add_shellcode.c: + * src/dialogs/binparts.c: + * src/dialogs/binparts.h: + * src/dialogs/export.c: + * src/dialogs/export.h: + * src/dialogs/plugins.c: + * src/dialogs/plugins.h: + * src/editor.c: + * src/graph/layout.c: + Update code. + + * src/gtkext/easygtk.c: + * src/gtkext/gtkbinview.c: + * src/gtkext/gtkbinview.h: + * src/gtkext/gtkbinview-int.h: + * src/gtkext/gtkblockview.c: + * src/gtkext/gtkdockpanel.c: + * src/gtkext/gtkdockstation.c: + * src/gtkext/gtkgraphview.c: + * src/gtkext/gtksourceview.c: + * src/gtkext/gtkviewpanel.c: + * src/gtkext/gtkviewpanel.h: + * src/gtkext/gtkviewpanel-int.h: + Update code and make it compile with the lastest versions of GTK. + + * src/gui/editem.c: + * src/gui/editem.h: + * src/gui/editem-int.h: + * src/gui/menus/binary.c: + * src/gui/menus/debug.c: + * src/gui/menus/project.c: + * src/gui/menus/view.c: + * src/gui/panels/symbols.c: + * src/gui/tb/source.c: + * src/panels/breaks.c: + * src/panels/panel.c: + * src/panels/panel.h: + * src/panels/panel-int.h: + * src/plugins/plugin.c: + * src/plugins/plugin.h: + * src/plugins/plugin-int.h: + * src/project.c: + * src/project.h: + Update code. + 12-08-06 Cyrille Bagard <nocbos@gmail.com> * configure.ac: |