| 12345678910111213141516171819202122 |
- # This file contains a table of known vendor-os strings, with
- # things to map them to. `configure' will take the output of the
- # autoconf cannon macros and look in here. This only deals with
- # OS names. The right should be a common name like the arch table
- # generates
- # The final bit to build the Debian Architecture is done in init.cc
- # The left side is a regex for awk, and the first match is used.
- # These are used by Debian
- [^-]*-linux-.* linux
- [^-]*-kfreebsd.*-gnu freebsd
- [^-]*-knetbsd.*-gnu netbsd
- [^-]*-gnu[^-]* hurd
- # These are samples.
- hp-hpux[^-]* hp-ux
- sun-solaris[^-]* solaris
- [^-]*-openbsd[^-]* openbsd
- # Catch all
- .* unknown
|