From: Ronnie Sahlberg Date: Sun, 17 Jul 2011 06:33:27 +0000 (+1000) Subject: We need the same uint64_t workaround for cygwin as we have for OSX X-Git-Tag: upstream/1.9.6^2~343 X-Git-Url: https://git.piment-noir.org/?p=deb_libnfs.git;a=commitdiff_plain;h=2b50be4e1c069596b5e6c51790c3cda41093e7f5 We need the same uint64_t workaround for cygwin as we have for OSX since rpcgen on cygwin can not handle hyper either --- diff --git a/configure.ac b/configure.ac index 28d29cd..309f73f 100644 --- a/configure.ac +++ b/configure.ac @@ -44,6 +44,9 @@ case $host in *darwin*) RPCGENFLAGS=-DU_INT64_PLATTFORM_TYPE="u_int64_t" ;; + *cygwin*) + RPCGENFLAGS=-DU_INT64_PLATTFORM_TYPE="u_int64_t" + ;; *solaris*) AC_CHECK_HEADERS([sys/filio.h]) if test x$ENABLE_EXAMPLES = xyes; then