Remove include <ltdl.h> that is unnecessary for code using this header.

Gets rid of some <ltdl.h> weirdness that plagues other object code 
files on windows.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13635 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2006-03-15 11:14:20 +00:00
parent f31ba70fe3
commit eb06c72026
4 changed files with 14 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2006-03-15 Christian Stimming <stimming@tuhh.de>
* src/gnc-module/gnc-module.h: Remove include <ltdl.h> that is
unnecessary for code using this header. Gets rid of some <ltdl.h>
weirdness that plagues other object code files on windows.
2006-03-14 Christian Stimming <stimming@tuhh.de>
* src/backend/file/gnc-backend-file.c: Disable extra NFS lockfile

View File

@ -17,6 +17,10 @@
#include "gnc-module.h"
#include "gw-gnc-module.h"
#ifndef lt_ptr
# define lt_ptr lt_ptr_t
#endif
static GHashTable * loaded_modules = NULL;
static GList * module_info = NULL;

View File

@ -7,12 +7,6 @@
#define GNC_MODULE_H
#include <glib.h>
#include <ltdl.h>
#include <libguile.h>
#ifndef lt_ptr
#define lt_ptr lt_ptr_t
#endif
typedef void * GNCModule;

View File

@ -10,6 +10,10 @@
#include "gnc-module.h"
#ifndef lt_ptr
# define lt_ptr lt_ptr_t
#endif
static void
guile_main(void *closure, int argc, char ** argv)
{