Browse Source

add strndup replacement function for systems which lack it

0.9
Michael Elkins 23 years ago
parent
commit
e3797d65da
  1. 2
      README
  2. 1
      configure.in

2
README

@ -5,7 +5,7 @@
|_|___/\__, |_| |_|\___| |_|___/\__, |_| |_|\___|
|___/ |___/
isync - IMAP4 to maildir mailbox synchronization program isync - IMAP4 to maildir mailbox synchronization program
http://www.sigpipe.org/isync/ http://www.sigpipe.org:8080/isync/
Author: Michael Elkins <me@mutt.org> Author: Michael Elkins <me@mutt.org>

1
configure.in

@ -11,6 +11,7 @@ AC_ARG_WITH(ssl-dir, [ --with-ssl-dir=DIR location where openssl is insalled],
else else
AC_MSG_ERROR(can't find OpenSSL in $withval) AC_MSG_ERROR(can't find OpenSSL in $withval)
fi]) fi])
AC_REPLACE_FUNCS(strndup)
AC_CHECK_FUNCS(getopt_long) AC_CHECK_FUNCS(getopt_long)
AC_CHECK_LIB(socket,socket) AC_CHECK_LIB(socket,socket)
AC_CHECK_LIB(nsl,inet_ntoa) AC_CHECK_LIB(nsl,inet_ntoa)

Loading…
Cancel
Save