From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: YAMAMOTO Mitsuharu Newsgroups: gmane.emacs.devel Subject: Re: Asynchronous DNS Date: Tue, 02 Feb 2016 11:05:08 +0900 Organization: Faculty of Science, Chiba University Message-ID: References: <87si1gx6wz.fsf@gnus.org> <86y4b5zvzt.fsf@gmail.com> <8760y9kwrk.fsf@gnus.org> <8760y7nag7.fsf@gnus.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1454378743 17494 80.91.229.3 (2 Feb 2016 02:05:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 2 Feb 2016 02:05:43 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 02 03:05:36 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1aQQLW-0003xw-Or for ged-emacs-devel@m.gmane.org; Tue, 02 Feb 2016 03:05:34 +0100 Original-Received: from localhost ([::1]:54778 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQQLV-00048R-Vh for ged-emacs-devel@m.gmane.org; Mon, 01 Feb 2016 21:05:33 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43033) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQQLG-00047G-12 for emacs-devel@gnu.org; Mon, 01 Feb 2016 21:05:21 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aQQLC-0002hi-0F for emacs-devel@gnu.org; Mon, 01 Feb 2016 21:05:17 -0500 Original-Received: from mathmail.math.s.chiba-u.ac.jp ([133.82.132.2]:59505) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQQLB-0002hc-Dy for emacs-devel@gnu.org; Mon, 01 Feb 2016 21:05:13 -0500 Original-Received: from fermat1.math.s.chiba-u.ac.jp (fermat [192.168.32.10]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id E8656C0561 for ; Tue, 2 Feb 2016 11:05:08 +0900 (JST) In-Reply-To: <8760y7nag7.fsf@gnus.org> User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.3 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 133.82.132.2 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:199149 Archived-At: >>>>> On Tue, 02 Feb 2016 02:54:32 +0100, Lars Ingebrigtsen said: > Andy Moreton writes: >> Thanks. this gets further, but still has issues. >> On a mingw64 build (configured with --enable-check-lisp-object-type): >>=20 >> ../../src/process.c: In function =E2=80=98send_process=E2=80=99: >> ../../src/process.c:5907:7: error: used struct type value where scalar i= s required >> if (p->gnutls_boot_parameters) >> ^ >>=20 >> Shouldn't this be "if (! NILP (p->gnutls_boot_parameters))" ? > Yup. I've made that change and pushed it. There is another type error in check_for_dns. static Lisp_Object check_for_dns (Lisp_Object proc) { struct Lisp_Process *p =3D XPROCESS (proc); Lisp_Object ip_addresses =3D Qnil; int ret =3D 0; /* Sanity check. */ if (! p->dns_requests) return 1; ^ HERE ! Probably you can catch this kind of errors using --enable-check-lisp-object-type. YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp