source: heimdal/trunk/cf/sunos.m4@ 4

Last change on this file since 4 was 1, checked in by Paul Smedley, 10 years ago

Initial commit of Heimdal 1.5.3

File size: 313 bytes
Line 
1dnl
2dnl $Id$
3dnl
4
5AC_DEFUN([rk_SUNOS],[
6sunos=no
7case "$host" in
8*-*-solaris2.7)
9 sunos=57
10 ;;
11*-*-solaris2.[[89]] | *-*-solaris2.1[[0-9]])
12 sunos=58
13 ;;
14*-*-solaris2*)
15 sunos=50
16 ;;
17esac
18if test "$sunos" != no; then
19 AC_DEFINE_UNQUOTED(SunOS, $sunos,
20 [Define to what version of SunOS you are running.])
21fi
22])
Note: See TracBrowser for help on using the repository browser.