Revert r20082 (re-enable plugins)

Get the bi_import plugin building on Windows by including missing libc functions

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20085 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2011-01-13 16:52:59 +00:00
parent b367ec1bb7
commit 22799c48d7
3 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,7 @@ GUI_SUBDIRS_2 = \
import-export \
business \
optional \
plugins \
bin
DIST_SUBDIRS = $(NONGUI_SUBDIRS) $(GUI_SUBDIRS_1) report $(GUI_SUBDIRS_2)

View File

@ -19,6 +19,7 @@ libgncmod_bi_import_la_LDFLAGS = -avoid-version
libgncmod_bi_import_la_LIBADD = \
${top_builddir}/src/gnc-module/libgnc-module.la \
${top_builddir}/lib/libc/libc-missing.la \
${GNOME_LIBS} \
${GLADE_LIBS} \
${QOF_LIBS} \
@ -35,6 +36,7 @@ AM_CFLAGS = \
-I${top_srcdir}/src/engine \
-I${top_srcdir}/src/core-utils \
-I${top_srcdir}/src/gnc-module \
-I${top_srcdir}/lib/libc \
${GNOME_CFLAGS} \
${GLADE_CFLAGS} \
${QOF_CFLAGS} \

View File

@ -34,6 +34,10 @@
#include "config.h"
#endif
#ifndef HAVE_LOCALTIME_R
#include "localtime_r.h"
#endif
#include <glib/gi18n.h>
#include <regex.h>
#include <glib.h>