mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-30 11:06:36 +12:00
2001-01-29 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* config.guess: Specifically identify 4.3BSD and 4.3BSD-Reno in the original VAX UNIX detection logic based on the BSD define in <sys/param.h>.
This commit is contained in:
parent
03fa5f3d55
commit
6191b6e137
@ -1,3 +1,9 @@
|
|||||||
|
2001-01-29 Michael Sokolov <msokolov@ivan.Harhan.ORG>
|
||||||
|
|
||||||
|
* config.guess: Specifically identify 4.3BSD and 4.3BSD-Reno in
|
||||||
|
the original VAX UNIX detection logic based on the BSD define in
|
||||||
|
<sys/param.h>.
|
||||||
|
|
||||||
2001-01-17 Pavel Roskin <proski@gnu.org>
|
2001-01-17 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* config.sub: Removed cases that cannot match. Vendor changed
|
* config.sub: Removed cases that cannot match. Vendor changed
|
||||||
|
23
config.guess
vendored
23
config.guess
vendored
@ -1307,11 +1307,24 @@ main ()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined (vax)
|
#if defined (vax)
|
||||||
#if !defined (ultrix)
|
# if !defined (ultrix)
|
||||||
printf ("vax-dec-bsd\n"); exit (0);
|
# include <sys/param.h>
|
||||||
#else
|
# if defined (BSD)
|
||||||
printf ("vax-dec-ultrix\n"); exit (0);
|
# if BSD == 43
|
||||||
#endif
|
printf ("vax-dec-bsd4.3\n"); exit (0);
|
||||||
|
# else
|
||||||
|
# if BSD == 199006
|
||||||
|
printf ("vax-dec-bsd4.3reno\n"); exit (0);
|
||||||
|
# else
|
||||||
|
printf ("vax-dec-bsd\n"); exit (0);
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
printf ("vax-dec-bsd\n"); exit (0);
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
printf ("vax-dec-ultrix\n"); exit (0);
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined (alliant) && defined (i860)
|
#if defined (alliant) && defined (i860)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user