mirror of
https://github.com/mirror/make.git
synced 2024-12-28 05:40:10 +08:00
Savannah bug #37179: Use alternate shared library syntax for MacOS.
This commit is contained in:
parent
a95dc485fa
commit
145661a541
@ -1,5 +1,8 @@
|
|||||||
2012-09-09 Paul Smith <psmith@gnu.org>
|
2012-09-09 Paul Smith <psmith@gnu.org>
|
||||||
|
|
||||||
|
* default.c (default_variables): Use a correct default LIBPPATERNS
|
||||||
|
for MacOS. Fixes Savannah bug #37197.
|
||||||
|
|
||||||
* read.c (record_files): Reset the default macro values if .POSIX
|
* read.c (record_files): Reset the default macro values if .POSIX
|
||||||
is set. Fixes Savannah bug #37069.
|
is set. Fixes Savannah bug #37069.
|
||||||
(parse_file_seq): Break out of an infinite loop if we're not
|
(parse_file_seq): Break out of an infinite loop if we're not
|
||||||
|
@ -514,15 +514,15 @@ static const char *default_variables[] =
|
|||||||
"SCCS_OUTPUT_OPTION", "-G$@",
|
"SCCS_OUTPUT_OPTION", "-G$@",
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _AMIGA
|
#if defined(_AMIGA)
|
||||||
".LIBPATTERNS", "%.lib",
|
".LIBPATTERNS", "%.lib",
|
||||||
#else
|
#elif defined(__MSDOS__)
|
||||||
#ifdef __MSDOS__
|
|
||||||
".LIBPATTERNS", "lib%.a $(DJDIR)/lib/lib%.a",
|
".LIBPATTERNS", "lib%.a $(DJDIR)/lib/lib%.a",
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
".LIBPATTERNS", "lib%.dylib lib%.a",
|
||||||
#else
|
#else
|
||||||
".LIBPATTERNS", "lib%.so lib%.a",
|
".LIBPATTERNS", "lib%.so lib%.a",
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* !VMS */
|
#endif /* !VMS */
|
||||||
0, 0
|
0, 0
|
||||||
|
Loading…
Reference in New Issue
Block a user