From: root Date: Sun, 18 Nov 2007 02:17:35 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=2e2a9312dc76686aa96f38774bfb4dc0d935d0db;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 389c7e9d..dca3d782 100644 --- a/Changes +++ b/Changes @@ -22,11 +22,11 @@ TODO: align default value of cutchars with rxvt.1.pod and add it as a fallback i - expect major portability issues in this release: please test and report. - converted from the veritable io manager event loop to the high performance libev (http://software.schmorp.de/pkg/libev). - - automove-background functionality re-implemented internaly using :root op in pixmap - geometry string. For example: rxvt -pixmap "image.jpg;:root" + - fix memory leak in pixmap code. - fix a serious bug while setting the XIM destroy callback on (typical) 64 bit systems. - - fix memory leak in pixmap code. + - automove-background functionality re-implemented internaly using :root op in pixmap + geometry string. For example: rxvt -pixmap "image.jpg;:root" - do not link rxvtc against every lib on the planet anymore. 8.4 Sat Oct 27 14:02:13 CEST 2007 diff --git a/config.h.in b/config.h.in index eed72eec..18cfcaf3 100644 --- a/config.h.in +++ b/config.h.in @@ -109,6 +109,12 @@ /* Define to 1 if you have the `openpty' function. */ #undef HAVE_OPENPTY +/* Define to 1 if you have the `poll' function. */ +#undef HAVE_POLL + +/* Define to 1 if you have the header file. */ +#undef HAVE_POLL_H + /* Define to 1 if you have the `port_create' function. */ #undef HAVE_PORT_CREATE @@ -124,6 +130,9 @@ /* Define to 1 if you have the `revoke' function. */ #undef HAVE_REVOKE +/* Define to 1 if you have the `select' function. */ +#undef HAVE_SELECT + /* Define to 1 if you have the `seteuid' function. */ #undef HAVE_SETEUID diff --git a/configure b/configure index b076a703..bfb61624 100755 --- a/configure +++ b/configure @@ -5370,7 +5370,9 @@ done -for ac_header in sys/epoll.h sys/event.h sys/queue.h port.h + + +for ac_header in sys/epoll.h sys/event.h sys/queue.h port.h poll.h sys/select.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then @@ -5513,7 +5515,9 @@ done -for ac_func in epoll_ctl kqueue port_create + + +for ac_func in epoll_ctl kqueue port_create poll select do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5