Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 03F0BA60ED for ; Mon, 25 Nov 2013 12:06:18 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5E7AD14A60B; Mon, 25 Nov 2013 12:06:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3445314A610 for ; Mon, 25 Nov 2013 12:06:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id OHYm970lpFGa for ; Mon, 25 Nov 2013 12:06:07 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id 3046414A5F6 for ; Mon, 25 Nov 2013 12:06:07 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 2610D96; Mon, 25 Nov 2013 12:06:07 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Mon, 25 Nov 2013 12:06:07 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/sysutils/cdrtools To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20131125120607.2610D96@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: wiz Date: Mon Nov 25 12:06:07 UTC 2013 Modified Files: pkgsrc/sysutils/cdrtools: Makefile distinfo Log Message: Update to 3.01a19: All: - New autoconf tests for: - NFSv4 ACL support - issetugid() - lpathconf() - utimens() - futimens() - lutimens() - The rules in the Schily Makefilesystem have been restructured in order to allow to avoid problems on platforms like FreeBSD and Mac OS X: FreeBSD and Mac OS X banned the not-free-enough (because GPLd) software to /usr/local, forcing us to add -I/usr/local/include and -L/usr/local/lib. Unfortunately, /usr/local/include frequently carries a _very_ outdated and thus wrong copy of "cdda_paranoia.h" which is more than 10 years old and definitely incompatible with dynamic linking on Mac OS X. This defective copy was first in the search path and prevented compilation. We now have a new macro: DEFOSINCDIRS= that grants to add include directories to the end of the search PATH to allow us to find the correct "cdda_paranoia.h" first. Please test and report in case of problems. - gmake and SunPro make include COMPILE.c with wrong content in their built-in rules. We now clear this macro un RULES/rules.top. It is still possible to provice a modified version from command line or from the environment. - include/schily/stdio.h was reordered, as it prevented compilation of the "bsh" on Linux. This was a problem recently introduced, when we added #ifndef NO_SCHILY_STDIO_H - Fixed autoconf typo HAVE_MKNODKAT -> HAVE_MKNODAT - include/schily/intcvt.h is now self contained. - include/schily/windows.h now includes the same type workaround for MINGW32 as fir the Microsoft C compiler, as there are the same autoconf detection problems. - Addded missing include/schily/err_type.h - New file include/schily/shedit.h Libschily: - New files for libschily: at-base.c generic implementation for *at() functions. fchownat.c fchownat() fdopendir.c fdopendir() fstatat.c fstatat() futimens.c futimens() futimesat.c futimesat() Solaris specific old for utimensat() lutimens.c lutimens() linkat.c linkat() mkdirat.c mkdirat() mkfifo.c mkfifo() mkfifoat.c mkfifoat() mknodat.c mknodat() readlinkat.c readlinkat() renameat.c renameat() symlinkat.c symlinkat() unlinkat.c unlinkat() utimens.c utimens() utimensat.c utimensat() at-base.c The base code for all single fd *at() functions. at-base2.c The base code for all double fd *at() functions. contain emulations for system interfaces introduced in summer 2001 by Sun and with POSIX.1-2008. - New functions in libschily: absfpath() resolvefpath() allow to better control the behavior using flags. - The linker map file for libschily now adds some forgotten functions. - libschily/strstr.c and libschily/wcsstr.c now include a CDDL License hint Libfind: - Libfind now allows to check for -type P (Solaris event port). A missing "case 'P':" was added to the parser. Cdrecord: - Trying to avoid to confuse users on Solaris and Linux where a fine grained privilege implementation exists. Before, fine grained privileges have been given up after initializing the program and this may result in a root user that is treated as a normal user that cannot write into directories without global write permission. The named programs now no longer give up privileges in case they have been called with the needed privileges already and thus the programs cannot be used for privilege escalations anymore. Cdda2wav (Maintained/enhanced by Jörg Schilling, originated by Heiko Eißfeldt heiko@hexco.de): - Trying to avoid to confuse users on Solaris and Linux where a fine grained privilege implementation exists. Before, fine grained privileges have been given up after initializing the program and this may result in a root user that is treated as a normal user that cannot write into directories without global write permission. The named programs now no longer give up privileges in case they have been called with the needed privileges already and thus the programs cannot be used for privilege escalations anymore. - Cddda2wav now flushes stderr before asking for a specific cddb entry index. It seems that on Linux stderr may not be unbuffered as expected. - Cdda2wav moved the option parsing code into a separate function gargs(). Readcd: - Trying to avoid to confuse users on Solaris and Linux where a fine grained privilege implementation exists. Before, fine grained privileges have been given up after initializing the program and this may result in a root user that is treated as a normal user that cannot write into directories without global write permission. The named programs now no longer give up privileges in case they have been called with the needed privileges already and thus the programs cannot be used for privilege escalations anymore. To generate a diff of this commit: cvs rdiff -u -r1.99 -r1.100 pkgsrc/sysutils/cdrtools/Makefile cvs rdiff -u -r1.77 -r1.78 pkgsrc/sysutils/cdrtools/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.