X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=aclocal.m4;fp=aclocal.m4;h=7dd6110e7fbfa6efea25d841bfe75217a32e90f0;hp=cbfb4982f2f5299d2c4809312c8d21845500bf70;hb=487fd343fb19fcf78eeacd79bf0099b278678971;hpb=782849d31a0cc5a0f4cf989349152bdd7809f6ea diff --git a/aclocal.m4 b/aclocal.m4 index cbfb498..7dd6110 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -19,23 +19,3 @@ AC_DEFUN(AC_CHECK_NETLIBS, AC_CHECK_FUNC(socket, , AC_CHECK_LIB(socket, socket)) ]) - - -# This checks for the function ruserpass. -# -# 1) first, check for ruserpass -# 2) else, check for _ruserpass -# 3) else, check for _ruserpass in libsocket -# 4) else, build version of ruserpass in nmh/sbr -AC_DEFUN(AC_CHECK_RUSERPASS, -[AC_CHECK_FUNC(ruserpass, , - AC_CHECK_FUNC(_ruserpass, , - AC_CHECK_LIB(socket, _ruserpass))) -if test x$ac_cv_func_ruserpass = xno; then - if test x$ac_cv_func__ruserpass = xyes -o x$ac_cv_lib_socket__ruserpass = xyes; then - AC_DEFINE(ruserpass, _ruserpass) - else - LIBOBJS="$LIBOBJS ruserpass.o" - fi -fi -])