search for: ac_struct_tm

Displaying 3 results from an estimated 3 matches for "ac_struct_tm".

2004 Sep 02
2
[LLVMdev] Type uint64_t required but not found
...4 20:13:17 -0000 @@ -315,7 +315,7 @@ AC_TYPE_PID_T AC_TYPE_SIZE_T AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not found])) -AC_CHECK_TYPES([uint64_t],,AC_MSG_ERROR([Type uint64_t required but not found])) +AC_CHECK_TYPES([uint64_t]) AC_CHECK_TYPES([u_int64_t]) AC_HEADER_TIME AC_STRUCT_TM _________________________________________________________________ F� alle de nye og sjove ikoner med MSN Messenger http://messenger.msn.dk/ -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: diff.txt URL: <http://lists.llvm.org/pipermail/llvm-...
2004 Sep 02
0
[LLVMdev] Type uint64_t required but not found
...-315,7 +315,7 @@ } AC_TYPE_PID_T } AC_TYPE_SIZE_T } AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not } found])) } -AC_CHECK_TYPES([uint64_t],,AC_MSG_ERROR([Type uint64_t required but not } found])) } +AC_CHECK_TYPES([uint64_t]) } AC_CHECK_TYPES([u_int64_t]) } AC_HEADER_TIME } AC_STRUCT_TM } Maybe instead of just assuming one will be there you can do something like this: AC_CHECK_TYPES([uint64_t],, AC_CHECK_TYPES([u_int64_t],, AC_MSG_ERROR([Type uint64_t or u_int64_t ...]))) I know I just jumped into the middle of this discussion, but...
2007 Oct 18
0
[PATCH] Use credentials and permissions on control socket where available
...| 11 ++++++++++- src/control_common.h | 1 + src/tincctl.c | 38 ++++++++++++++++++++++++++++++++++---- 4 files changed, 47 insertions(+), 7 deletions(-) diff --git a/configure.in b/configure.in index 670e855..6b13eb3 100644 --- a/configure.in +++ b/configure.in @@ -114,7 +114,7 @@ AC_STRUCT_TM tinc_ATTRIBUTE(__malloc__) -AC_CHECK_TYPES([socklen_t, struct ether_header, struct arphdr, struct ether_arp, struct in_addr, struct addrinfo, struct ip, struct icmp, struct in6_addr, struct sockaddr_in6, struct ip6_hdr, struct icmp6_hdr, struct nd_neighbor_solicit, struct nd_opt_hdr], , , +AC_...