mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* Fix the autoconf-2.13/2.52/2.53 problems -- Gnucash should now
work on all versions of auto-tools, although it now requires GnuMake. * configure.in -- just pass LIBOBJS directly to the Makefile; pass a sed script that uses '$U' (which is a 2.53ism, but works right on 2.13) to the Makefile. * lib/libc/Makefile.am -- Use LIBOBJS and GnuMake's $(shell) syntax to create the list of libobjects to be linked into "libc-missing" git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7266 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
@@ -9,8 +9,16 @@ libc_missing_la_SOURCES = libc-missing-noop.c
|
||||
|
||||
# This will automatically be filled in with the necessary object file
|
||||
# names. Configure does this based upon the AC_REPLACE_FUNCS macros.
|
||||
libc_missing_la_LIBADD = @LTLIBOBJS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LTLIBOBJS = $(shell echo "$(LIBOBJS)" | sed '@LIBOBJS_SEDSCRIPT@' | \
|
||||
sed 's,\.[^.]* ,.lo ,g;s,\.[^.]*$$,.lo,')
|
||||
|
||||
libc_missing_la_LIBADD = $(LTLIBOBJS)
|
||||
|
||||
# Not currently used. If added to AC_REPLACE_FUNCS then this line
|
||||
# should be removed.
|
||||
EXTRA_DIST = scm_strptime.c
|
||||
|
||||
print_libobjs:
|
||||
@echo "LIBOBJS = $(LIBOBJS)"
|
||||
@echo "LTLIBOBJS = $(LTLIBOBJS)"
|
||||
|
||||
Reference in New Issue
Block a user