1# This could be better
2
3AC_INIT(vnccrack.cpp)
4
5AC_PROG_CXX
6
7AC_CHECK_LIB(crypto, DES_set_key_unchecked)
8
9if test x$ac_cv_lib_crypto_DES_set_key_unchecked != xyes
10then
11   AC_MSG_ERROR("Couldn't find working OpenSSL")
12fi
13
14AC_OUTPUT(Makefile)
15