From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/2339 Path: news.gmane.org!not-for-mail From: "Matias A. Fonzo" Newsgroups: gmane.linux.lib.musl.general Subject: inetutils issues Date: Sun, 25 Nov 2012 22:46:22 -0300 Message-ID: <20121125224622.2bc569e7@rafaela> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1353898280 6515 80.91.229.3 (26 Nov 2012 02:51:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 26 Nov 2012 02:51:20 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-2340-gllmg-musl=m.gmane.org@lists.openwall.com Mon Nov 26 03:51:32 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1TconE-0004WY-1B for gllmg-musl@plane.gmane.org; Mon, 26 Nov 2012 03:51:32 +0100 Original-Received: (qmail 13456 invoked by uid 550); 26 Nov 2012 02:51:20 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 25812 invoked from network); 26 Nov 2012 01:28:58 -0000 X-Authority-Analysis: v=2.0 cv=HIVB5/Rv c=1 sm=1 a=vvTjVZbTsIM3YVuD5ExHEg==:17 a=ASokBxPbDM8A:10 a=9Q5qhoxNCncA:10 a=kj9zAlcOel0A:10 a=IkK7ewXGAAAA:8 a=tuRz5VCMDNAA:10 a=j4Fk6XODg6cgkrfeRB0A:9 a=CjuIK1q_8ugA:10 a=5bnIr+R+vs56oWgm0tidcA==:117 X-EN-OrigOutIP: 10.1.18.11 X-EN-IMPSID: U1Ul1k0090EKrUA011Ulfy X-Mailer: Claws Mail 3.8.0cvs39 (GTK+ 2.24.10; x86_64-dragora-linux-gnu) X-EN-UserInfo: 437011c531a180990c73778423a05059:b8667caf9a6d463388b687baf7896592 X-EN-AuthUser: selk@mfonzo.powweb.com Original-Sender: "Matias A. Fonzo" X-EN-OrigIP: 190.151.174.121 X-EN-OrigHost: unknown Xref: news.gmane.org gmane.linux.lib.musl.general:2339 Archived-At: Hi there, GNU inetutils (the replacement of the BSD net-utils) needs two missing legacy headers in order to have the following commands working: tftp, ftp, and probably others. arpa/tftp.h arpa/ftp.h Also the compilation fails with the file "utmp_login.c", who is trying to look for some aliases on include/utmp.h - more specifically, these aliases present on the include/utmp.h from Glibc, says: /* Compatibility names for the strings of the canonical file names. */ #define UTMP_FILE _PATH_UTMP #define UTMP_FILENAME _PATH_UTMP #define WTMP_FILE _PATH_WTMP #define WTMP_FILENAME _PATH_WTMP I've added the lines in the utmp.h provided by Musl just after the line 39, and the compilation has been passed. I want to know if this is correct and if this can be solved in the upstream side. Thanks, Matias.