*** empty log message ***
authorroot <root>
Sun, 18 Nov 2007 02:17:35 +0000 (02:17 +0000)
committerroot <root>
Sun, 18 Nov 2007 02:17:35 +0000 (02:17 +0000)
Changes
config.h.in
configure

diff --git a/Changes b/Changes
index 389c7e9d98639d757f4006e71207f8b01ee0edc2..dca3d782b863f8c324c393bf2cefb43898c036f8 100644 (file)
--- 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
index eed72eec9bf791789bfbabe38a13f6a5fd938a38..18cfcaf378e12802e643f61f5ffefcb4ca432301 100644 (file)
 /* 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 <poll.h> header file. */
+#undef HAVE_POLL_H
+
 /* Define to 1 if you have the `port_create' function. */
 #undef HAVE_PORT_CREATE
 
 /* 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
 
index b076a703ff06b3b5b1fb71eb9254e4d8475a5068..bfb6162415ea5c489b94946ea977a9928832adf7 100755 (executable)
--- 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