mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
We depend on GLib >= 2.8 on Windows in configure.in, so there is no reason to include unused GLib 2.8 Windows-specific code. Oops. OTOH, gstdio-2.8.h is needed on Unix. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15549 57a11ea4-9604-0410-9ed3-97b8803252fd
19 lines
396 B
Makefile
19 lines
396 B
Makefile
noinst_LTLIBRARIES = libgnc-glib.la
|
|
|
|
DUMMYSRCS = dummy.c
|
|
REALSRCS = gfileutils-2.8.c
|
|
REALHDRS = gfileutils-2.8.h gstdio-2.8.h
|
|
|
|
if HAVE_GLIB_2_8
|
|
libgnc_glib_la_SOURCES = ${DUMMYSRCS}
|
|
else
|
|
libgnc_glib_la_SOURCES = ${REALSRCS}
|
|
noinst_HEADERS = ${REALHDRS}
|
|
endif
|
|
|
|
libgnc_glib_la_LIBADD = ${GLIB26_LIBS}
|
|
|
|
AM_CFLAGS = ${GLIB_CFLAGS}
|
|
|
|
EXTRA_DIST = $(DUMMYSRCS) $(REALSRCS) $(REALHDRS)
|