2. these are just generic fixes - so also fix 1 doc example too.



SVN revision: 39464
This commit is contained in:
Carsten Haitzler 2009-03-13 10:53:07 +00:00
parent 5e925c916e
commit 739db97356
4 changed files with 6 additions and 3 deletions

View File

@ -308,6 +308,9 @@ case "${host_os}" in
*darwin*)
EINA_LIBS="${EINA_LIBS} -lm"
;;
*cygwin*)
EINA_LIBS="${EINA_LIBS} -ldl -lm"
;;
*)
EINA_LIBS="${EINA_LIBS} -ldl -lrt -lm"
;;

View File

@ -205,7 +205,7 @@ _eina_counter_asiprintf(char *base, int *position, const char *format, ...)
* test_malloc();
* eina_counter_stop(counter, 1);
*
* eina_counter_dump(counter, stdout);
* eina_counter_dump(counter);
*
* eina_counter_delete(counter);
* eina_counter_shutdown();

View File

@ -52,7 +52,7 @@ static void _mempool_init(void)
{
eina_mempool_init();
/* force modules to be loaded in case they are not installed */
_modules = eina_module_list_get(PACKAGE_BUILD_DIR"/src/modules", 1, NULL, NULL);
_modules = eina_module_list_get(NULL, PACKAGE_BUILD_DIR"/src/modules", 1, NULL, NULL);
eina_module_list_load(_modules);
}

View File

@ -110,7 +110,7 @@ eina_bench_e17_stringshare(Eina_Stringshare_Test *str)
eina_counter_stop(cnt, 1);
fprintf(stderr, "For `%s`:\n", str->name);
eina_counter_dump(cnt, stderr);
eina_counter_dump(cnt);
eina_counter_delete(cnt);
}