diff --git a/ChangeLog b/ChangeLog index 3dce9b80..9eef18b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-01-22 Martin Baulig + * include/glibtop/backend.h (_glibtop_backend_module): Added + `extra_libs'. + * configure.in (LIBGTOP_LIBS): Removed `-lgtop_sysdeps'. This is gmodule loaded from the backend open function. diff --git a/include/glibtop/backend.h b/include/glibtop/backend.h index 4829ef4a..513f6fcf 100644 --- a/include/glibtop/backend.h +++ b/include/glibtop/backend.h @@ -63,6 +63,7 @@ struct _glibtop_backend_module { int refcount; GModule *module; + GSList *extra_modules; }; #endif /* _IN_LIBGTOP */ @@ -73,6 +74,8 @@ struct _glibtop_backend_entry char *libtool_name; char *shlib_name; + GSList *extra_libs; + /* This is const since you must not attempt to * write into gmodule loaded memory. */ const glibtop_backend_info *info;