Changeset: dc37ce565cf2 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=dc37ce565cf2 Modified Files: monetdb5/mal/mal_linker.c monetdb5/mal/mal_linker.h Branch: Aug2011 Log Message:
Move #include to C file. This may solve the compilation issue that mal_module.h could not be found. diffs (22 lines): diff --git a/monetdb5/mal/mal_linker.c b/monetdb5/mal/mal_linker.c --- a/monetdb5/mal/mal_linker.c +++ b/monetdb5/mal/mal_linker.c @@ -65,6 +65,7 @@ * */ #include "monetdb_config.h" +#include "mal_module.h" #include "mal_linker.h" #include "mal_function.h" /* for throw() */ #include "mal_import.h" /* for slash_2_dir_sep() */ diff --git a/monetdb5/mal/mal_linker.h b/monetdb5/mal/mal_linker.h --- a/monetdb5/mal/mal_linker.h +++ b/monetdb5/mal/mal_linker.h @@ -18,7 +18,6 @@ */ #ifndef _MAL_LINKER_H -#include "mal_module.h" #define MAL_EXT ".mal" #define SQL_EXT ".sql" _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
