From 4af2842fc43143d76020b8cc3f4ece4a9922aa55 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 16 Sep 2011 13:04:03 -0400 Subject: Instead of detecting the host type, you may use --enable-compat instead. Enabling compat will build and link against a static library containing string functions not found in older version of glibc. --- Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 6a74efa..a504d36 100644 --- a/Makefile.in +++ b/Makefile.in @@ -66,7 +66,7 @@ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) +DIST_SUBDIRS = src compat DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) @@ -219,7 +219,8 @@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -SUBDIRS = compat src +@HAVE_COMPAT_FALSE@SUBDIRS = src +@HAVE_COMPAT_TRUE@SUBDIRS = compat src all: all-recursive .SUFFIXES: -- cgit