]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/heimdal/cf/sunos.m4
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / heimdal / cf / sunos.m4
1 dnl
2 dnl $Id: sunos.m4 14608 2005-03-01 22:17:44Z lha $
3 dnl
4
5 AC_DEFUN([rk_SUNOS],[
6 sunos=no
7 case "$host" in 
8 *-*-sunos4*)
9         sunos=40
10         ;;
11 *-*-solaris2.7)
12         sunos=57
13         ;;
14 *-*-solaris2.[[89]] | *-*-solaris2.10)
15         sunos=58
16         ;;
17 *-*-solaris2*)
18         sunos=50
19         ;;
20 esac
21 if test "$sunos" != no; then
22         AC_DEFINE_UNQUOTED(SunOS, $sunos, 
23                 [Define to what version of SunOS you are running.])
24 fi
25 ])