]> git.pld-linux.org Git - packages/rsync.git/blob - rsync-acfix.patch
- needed for ac 2.58+
[packages/rsync.git] / rsync-acfix.patch
1 --- rsync-2.5.7/configure.in.orig       Thu Dec  4 05:23:29 2003
2 +++ rsync-2.5.7/configure.in    Thu Dec  4 10:42:07 2003
3 @@ -333,8 +333,8 @@
4  
5  dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
6  
7 -AC_CHECK_FUNCS(inet_ntop, , AC_LIBOBJ(lib/inet_ntop)) 
8 -AC_CHECK_FUNCS(inet_pton, , AC_LIBOBJ(lib/inet_pton))
9 +AC_CHECK_FUNCS(inet_ntop, , [AC_LIBOBJ(lib/inet_ntop)])
10 +AC_CHECK_FUNCS(inet_pton, , [AC_LIBOBJ(lib/inet_pton)])
11  
12  # Irix 6.5 has getaddrinfo but not the corresponding defines, so use
13  #   builtin getaddrinfo if one of the defines don't exist
14 @@ -363,7 +363,7 @@
15                                 [Define if you have the `getaddrinfo' function.])],
16                         [AC_MSG_RESULT([no])
17                         AC_LIBOBJ(lib/getaddrinfo)])])
18 -       AC_CHECK_FUNCS(getnameinfo, , AC_LIBOBJ(lib/getnameinfo))
19 +       AC_CHECK_FUNCS(getnameinfo, , [AC_LIBOBJ(lib/getnameinfo)])
20  else
21         AC_LIBOBJ(lib/getaddrinfo)
22         AC_LIBOBJ(lib/getnameinfo)
This page took 0.077467 seconds and 3 git commands to generate.