repo.or.cz
/
heimdal.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove dead code [CID-10]
[heimdal.git]
/
cf
/
sunos.m4
blob
5bd45d84320aab179a5b19a40c64cbf6b8d574b0
1
dnl
2
dnl $Id$
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.1[0-9])
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
])