]> git.pld-linux.org Git - packages/urxvt.git/blob - urxvt-link.patch
- 7.0
[packages/urxvt.git] / urxvt-link.patch
1 diff -aurN rxvt-unicode-6.3.orig/autoconf/configure.in rxvt-unicode-6.3/autoconf/configure.in
2 --- rxvt-unicode-6.3.orig/autoconf/configure.in 2006-01-04 06:16:42.000000000 +0100
3 +++ rxvt-unicode-6.3/autoconf/configure.in      2006-01-06 23:19:40.000000000 +0100
4 @@ -77,11 +77,11 @@
5  AC_ISC_POSIX
6  
7  dnl# FreeBSD needs to link libxpg4
8 -AC_CHECK_FUNC(setlocale,     [], [AC_CHECK_LIB(xpg4,   setlocale,     [LIBS="$LIBS -lxpg4"])])
9 +AC_SEARCH_LIBS(setlocale, xpg4)
10  
11  dnl# solaris needs to link libnsl and socket
12 -AC_CHECK_FUNC(gethostbyname, [], [AC_CHECK_LIB(nsl,    gethostbyname, [LIBS="$LIBS -lnsl"])])
13 -AC_CHECK_FUNC(socket,        [], [AC_CHECK_LIB(socket, socket,        [LIBS="$LIBS -lsocket"])])
14 +AC_SEARCH_LIBS(nsl, gethostbyname)
15 +AC_SEARCH_LIBS(socket, socket)
16  
17  dnl# more solaris
18  AC_CHECK_FUNC(sched_yield,   [], [AC_CHECK_LIB(rt,     sched_yield,   [LIBS="$LIBS -lrt"])])
This page took 0.067504 seconds and 3 git commands to generate.