Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary MIME-Version: 1.0 X-Mailer: MIME-tools 5.411 (Entity 5.404) X-RT-Original-Encoding: iso-8859-1 Content-Length: 2733 From krb5-bugs-incoming-bounces@mit.edu Wed Jun 9 18:21:38 2004 Received: from pch.mit.edu (PCH.MIT.EDU [18.7.21.90]) by krbdev.mit.edu (8.9.3p2) with ESMTP id SAA12988; Wed, 9 Jun 2004 18:21:38 -0400 (EDT) Received: from pch.mit.edu (localhost [127.0.0.1]) by pch.mit.edu (8.12.8p2/8.12.8) with ESMTP id i59MLbl1007488 for ; Wed, 9 Jun 2004 18:21:38 -0400 (EDT) Received: from fort-point-station.mit.edu (FORT-POINT-STATION.MIT.EDU [18.7.7.76]) by pch.mit.edu (8.12.8p2/8.12.8) with ESMTP id i59DW3l1021586 for ; Wed, 9 Jun 2004 09:32:04 -0400 (EDT) Received: from cirse.extra.cea.fr (cirse.extra.cea.fr [132.166.172.102]) i59DW0Kn002545 for ; Wed, 9 Jun 2004 09:32:00 -0400 (EDT) Received: from argiope.saclay.cea.fr (argiope.saclay.cea.fr [132.166.192.108]) i59DVxTA020954 for ; Wed, 9 Jun 2004 15:31:59 +0200 (MEST) Received: from muguet.saclay.cea.fr (unverified) by argiope.saclay.cea.fr for ; Wed, 9 Jun 2004 15:31:59 +0200 Received: from styx.bruyeres.cea.fr (styx-e76.bruyeres.cea.fr [132.165.76.3]) i59DVxe5014816; Wed, 9 Jun 2004 15:31:59 +0200 (MEST) Received: by styx.bruyeres.cea.fr; id PAA21617; Wed, 9 Jun 2004 15:31:58 +0200 (MET DST) Message-Id: <200406091331.PAA21617@styx.bruyeres.cea.fr> Date: Wed, 9 Jun 2004 15:31:10 +0200 (MEST) To: krb5-bugs@mit.edu From: alexandre.schmitt@cea.fr X-send-pr-version: 3.99 X-Mailman-Approved-At: Wed, 09 Jun 2004 18:21:34 -0400 cc: alexandre.schmitt@cea.fr Subject: Bug: compilation on HPUX X-BeenThere: krb5-bugs-incoming@mit.edu X-Mailman-Version: 2.1 Precedence: list Reply-To: alexandre.schmitt@cea.fr Sender: krb5-bugs-incoming-bounces@mit.edu Errors-To: krb5-bugs-incoming-bounces@mit.edu >Submitter-Id: net >Originator: Alexandre Schmitt >Organization: CEA >Confidential: no >Synopsis: Compilation on HPUX 11 failed >Severity: non-critical >Priority: medium >Category: krb5-build >Class: change-request >Release: krb5-1.3.3 >Environment: System: HP-UX B.11.00 >Description: "make" failed on HP-UX >How-To-Repeat: ./configure --without-krb4 CC=/bin/cc This configure works, but make failed. >Fix: We have to modify 2 files: - src/include/port-sockets.h - src/appl/bsd/compat_recv.c diff port-sockets.h port-sockets.h.ori 160c160 < ? (SOCKET_SET_ERRNO(ENOSPC), (char *) NULL) \ --- > ? (SOCKET_SET_ERRNO(ENOSPC), NULL) \ 167c167 < : (SOCKET_SET_ERRNO(EAFNOSUPPORT), (char *) NULL)) --- > : (SOCKET_SET_ERRNO(EAFNOSUPPORT), NULL)) diff compat_recv.c compat_recv.c.ori 467d466 < #ifdef HAVE_SYS_SELECT_H 469d467 < #endif