]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix port to Debian GNU/kFreeBSD 7 (wheezy).
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Oct 2014 18:02:09 +0000 (11:02 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Oct 2014 18:02:09 +0000 (11:02 -0700)
* process.c (accept4) [!HAVE_ACCEPT4]: New macro.

Fixes: debbugs:18666
src/ChangeLog
src/process.c

index 63e0e728fee5cce5e985c2f08f4994a035f4efd1..19c553ff7a1ccbc508c764581524cbd2a3a99af9 100644 (file)
@@ -1,3 +1,8 @@
+2014-10-10  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Fix port to Debian GNU/kFreeBSD 7 (wheezy) (Bug#18666).
+       * process.c (accept4) [!HAVE_ACCEPT4]: New macro.
+
 2014-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * frame.c (Fmouse_pixel_position): Call Vmouse_position_function
index 2c66b9e976e3c745c11bf0ff0281df174a043c53..178fba8887e547c397f5e674e271b5deac67103d 100644 (file)
@@ -173,6 +173,9 @@ close_on_exec (int fd)
   return fd;
 }
 
+# undef accept4
+# define accept4(sockfd, addr, addrlen, flags) \
+    process_accept4 (sockfd, addr, addrlen, flags)
 static int
 accept4 (int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags)
 {