From 8077fd532a1572eb4e34643083138ab4b0039bf9 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 9 Sep 2012 20:14:09 +0000 Subject: Savannah bug #37179: Use alternate shared library syntax for MacOS. --- default.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'default.c') diff --git a/default.c b/default.c index 9747b335..27718099 100644 --- a/default.c +++ b/default.c @@ -514,15 +514,15 @@ static const char *default_variables[] = "SCCS_OUTPUT_OPTION", "-G$@", #endif -#ifdef _AMIGA +#if defined(_AMIGA) ".LIBPATTERNS", "%.lib", -#else -#ifdef __MSDOS__ +#elif defined(__MSDOS__) ".LIBPATTERNS", "lib%.a $(DJDIR)/lib/lib%.a", +#elif defined(__APPLE__) + ".LIBPATTERNS", "lib%.dylib lib%.a", #else ".LIBPATTERNS", "lib%.so lib%.a", #endif -#endif #endif /* !VMS */ 0, 0 -- cgit v1.2.1