diff options
Diffstat (limited to 'plugins/pychrysalide/core')
-rw-r--r-- | plugins/pychrysalide/core/Makefile.am | 17 | ||||
-rw-r--r-- | plugins/pychrysalide/core/module.c | 20 |
2 files changed, 21 insertions, 16 deletions
diff --git a/plugins/pychrysalide/core/Makefile.am b/plugins/pychrysalide/core/Makefile.am index 880823d..a50324a 100644 --- a/plugins/pychrysalide/core/Makefile.am +++ b/plugins/pychrysalide/core/Makefile.am @@ -1,15 +1,20 @@ noinst_LTLIBRARIES = libpychrysacore.la +# libpychrysacore_la_SOURCES = \ +# constants.h constants.c \ +# demanglers.h demanglers.c \ +# global.h global.c \ +# logs.h logs.c \ +# module.h module.c \ +# params.h params.c \ +# processors.h processors.c \ +# queue.h queue.c + libpychrysacore_la_SOURCES = \ constants.h constants.c \ - demanglers.h demanglers.c \ - global.h global.c \ logs.h logs.c \ - module.h module.c \ - params.h params.c \ - processors.h processors.c \ - queue.h queue.c + module.h module.c libpychrysacore_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS) $(LIBPYTHON_INTERPRETER_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \ -I$(top_srcdir)/src -DNO_IMPORT_PYGOBJECT diff --git a/plugins/pychrysalide/core/module.c b/plugins/pychrysalide/core/module.c index 846e961..b588057 100644 --- a/plugins/pychrysalide/core/module.c +++ b/plugins/pychrysalide/core/module.c @@ -28,12 +28,12 @@ #include <assert.h> -#include "demanglers.h" -#include "global.h" +//#include "demanglers.h" +//#include "global.h" #include "logs.h" -#include "params.h" -#include "processors.h" -#include "queue.h" +//#include "params.h" +//#include "processors.h" +//#include "queue.h" #include "../helpers.h" @@ -102,12 +102,12 @@ bool populate_core_module(void) result = true; - if (result) result = populate_core_module_with_demanglers(); - if (result) result = populate_core_module_with_global(); + //if (result) result = populate_core_module_with_demanglers(); + //if (result) result = populate_core_module_with_global(); if (result) result = populate_core_module_with_logs(); - if (result) result = populate_core_module_with_params(); - if (result) result = populate_core_module_with_processors(); - if (result) result = populate_core_module_with_queue(); + //if (result) result = populate_core_module_with_params(); + //if (result) result = populate_core_module_with_processors(); + //if (result) result = populate_core_module_with_queue(); assert(result); |