Lionel Sambuc ebfedea0ce Importing crypto libraries
- crypto/external/bsd/heimdal
 - crypto/external/bsd/libsaslc
 - crypto/external/bsd/netpgp
 - crypto/external/bsd/openssl

Change-Id: I91dbf05f33e637edf5b9bb408d5baddd7ba8cf75
2015-10-07 23:37:12 +02:00

22 lines
311 B
Plaintext

dnl
dnl Id
dnl
AC_DEFUN([rk_SUNOS],[
sunos=no
case "$host" in
*-*-solaris2.7)
sunos=57
;;
*-*-solaris2.[[89]] | *-*-solaris2.1[[0-9]])
sunos=58
;;
*-*-solaris2*)
sunos=50
;;
esac
if test "$sunos" != no; then
AC_DEFINE_UNQUOTED(SunOS, $sunos,
[Define to what version of SunOS you are running.])
fi
])