X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; q=dns; s=default; b=oTalr8MRAyaDOxsV5pK0WvRYRxcR0No5rXILkBf4U60 0tHYnzZfXJeVs3OUPvvzPA0QxRoykznbeGBunOvkWfD+rec56UdqjDWWiV2knQEn XW+uxmyWYDwtZOlN+v0j+Ovcq5lrkfVdzjUT4il68DhxiuLAdXAothAtFTbqBKhs = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; s=default; bh=g8OVNW70JtKUuoVZqdSqSIqQ+kQ=; b=B7ooUDNH0QGT7dGJG QyEs+/XHgs+JVUefIrRwayV9IYAczchnRs6Kj0SnjY6IkNs6k+D04nqL8Iw8C66P Bp2sWxvbcjs49CW1W5UTMZWDm69PMOLbCx8bKlBPksdoZ+J5Nee2bC1BpnK1fOhw O6UUOGuj0B++OCicoszUtttls8= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ea0-f173.google.com X-Received: by 10.14.219.73 with SMTP id l49mr695458eep.112.1391975431062; Sun, 09 Feb 2014 11:50:31 -0800 (PST) Message-ID: <52F7DC01.3080600@gmail.com> Date: Sun, 09 Feb 2014 20:50:25 +0100 From: Marco Atzeri User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: cygwin-1.7.28 getpwent header declaration changes ? References: <52F339CA DOT 5070305 AT gmail DOT com> <20140206090117 DOT GD2821 AT calimero DOT vinschen DOT de> In-Reply-To: <20140206090117.GD2821@calimero.vinschen.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes On 06/02/2014 10:01, Corinna Vinschen wrote: > On Feb 6 08:29, Marco Atzeri wrote: >> on cygwin-1.7.28 64 bit but not on cygwin-1.7.27, >> (only system difference) compiling octave I see: >> >> ---------------------------------------------------------------- >> /pub/devel/octave/octave-3.8.0-2/src/octave-3.8.0/liboctave/system/oct-passwd.cc >> :114:25: error: '::getpwent' has not been declared >> return octave_passwd (::getpwent (), msg); >> ^ >> [...] >> Is something slightly changed in the relative system headers ? > > I don't know anything about octave, but what has changed is that newlib > is finally introducing BSD-like visibility macros. The pwd.h header now > contains this: > > #if __XSI_VISIBLE >= 500 > struct passwd *getpwent (void); > void setpwent (void); > void endpwent (void); > #endif > > The default settings per the sys/cdefs.h header are: > > #define __POSIX_VISIBLE 200809 > #define __XSI_VISIBLE 700 > #define __BSD_VISIBLE 1 > #define __ISO_C_VISIBLE 2011 > > unless your environment defines one of > > _XOPEN_SOURCE > _POSIX_C_SOURCE > _ANSI_SOURCE > _C99_SOURCE > _C11_SOURCE > _GNU_SOURCE > > Have a look at the end of /usr/include/sys/cdefs.h, it explains things. > > > Corinna > probably I am missing something obvious, but should not /usr/include/sys/cdefs.h be included in some way in /usr/include/pwd.h to make working the #if __XSI_VISIBLE >= 500 struct passwd *getpwent (void); void setpwent (void); void endpwent (void); #endif ? Regards Marco -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple