From a66668aabccfbae3e1f22eaeb897b9c7a1e02733 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 22 Feb 1999 07:23:30 +0000 Subject: * New feature: .LIBPATTERNS controls the way -lfoo dependencies are expanded. * A few tweaks to the system glob test, after trying it on a system where it's true. * Installed patches to archive handling for AIX 4.3 big archives. * Fix a memory stomp in target-specific variables. * Fix a memory leak in foreach functions. --- default.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'default.c') diff --git a/default.c b/default.c index 06f56fa..76a3232 100644 --- a/default.c +++ b/default.c @@ -425,6 +425,16 @@ static char *default_variables[] = "SCCS_OUTPUT_OPTION", "-G$@", #endif +#ifdef _AMIGA + ".LIBPATTERNS", "%.lib", +#else +#ifdef __MSDOS__ + ".LIBPATTERNS", "lib%.a $(DJDIR)/lib/lib%.a", +#else + ".LIBPATTERNS", "lib%.so lib%.a", +#endif +#endif + #endif /* !VMS */ 0, 0 }; -- cgit v1.2.3