From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 65813 invoked by alias); 6 Sep 2019 17:39:27 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 65806 invoked by uid 89); 6 Sep 2019 17:39:26 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=H*R:D*ca, H*r:sk:smtp-ou, HX-Spam-Relays-External:sk:smtp-ou, HX-HELO:sk:smtp-ou X-HELO: smtp-out-no.shaw.ca Received: from smtp-out-no.shaw.ca (HELO smtp-out-no.shaw.ca) (64.59.134.9) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 06 Sep 2019 17:39:25 +0000 Received: from [192.168.1.114] ([24.64.172.44]) by shaw.ca with ESMTP id 6ICgiMQhTUIS26IChiPZ9B; Fri, 06 Sep 2019 11:39:23 -0600 From: Brian Inglis Subject: Re: netinet/* in Cygwin Reply-To: Brian.Inglis@SystematicSw.ab.ca To: cygwin@cygwin.com References: <61fcbddd17cbfe370eb3ae95489d17e8@ithena.net> <4c91c547-1f85-c24d-3404-bbd3d947cb63@SystematicSw.ab.ca> <6cbe355551e6c6bdc6a55645b693fbcf@ithena.net> Openpgp: preference=signencrypt Message-ID: <90ea37e6-913d-87af-ed4f-8853fec79e29@SystematicSw.ab.ca> Date: Fri, 06 Sep 2019 17:39:00 -0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: <6cbe355551e6c6bdc6a55645b693fbcf@ithena.net> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00058.txt.bz2 On 2019-09-05 00:49, Lukasz Swierczewski wrote: > W dniu 2019-09-04 18:34, Brian Inglis napisał(a): >> On 2019-09-04 00:36, Lukasz Swierczewski wrote: >>> I have question. >>> I need netinet/* in my C project. >>> For example: >>> #include >>> #include >>> #include >>> #include >>> Is this available in Cygwin? >> >> $ cygcheck -p usr/include/netinet/ >> Found 6 matches for usr/include/netinet/ >> cygwin-devel-3.0.6-1 - cygwin-devel: Core development files >> cygwin-devel-3.0.7-1 - cygwin-devel: Core development files >> cygwin-devel-3.1.0-0.3 - cygwin-devel: Core development files >> cygwin32-2.10.0-1 - cygwin32: Cygwin 32bit toolchain >> cygwin32-2.6.0-1 - cygwin32: Cygwin 32bit toolchain (installed binaries and >> support files) >> cygwin32-2.8.2-1 - cygwin32: Cygwin 32bit toolchain >> >> $ zfgrep netinet /etc/setup/cygwin-devel.lst.gz >> usr/include/netinet/ >> usr/include/netinet/in.h >> usr/include/netinet/in_systm.h >> usr/include/netinet/ip.h >> usr/include/netinet/ip6.h >> usr/include/netinet/ip_icmp.h >> usr/include/netinet/tcp.h >> usr/include/netinet/udp.h >> >> Install cygwin-devel package. >> >>> There are problems as standard ... >>> What do you need to do to compile with these libs? >> >> In many cases, nothing, as the functions are built into libc in the cygwin dll; >> otherwise for other libraries, add -l... to your build command line as you would >> on Unix. > Thanks! > It looks like it works ... > You can tell where I can find: > #include > #include > Any idea? ;) Unfortunately, system specific includes like linux/types.h and linux/errqueue.h make no sense on other systems which do not have those features, although there are lots of types to choose from on all systems: $ find /usr/include/{asm,machine,sys} -name _default_types.h \ -o -name _types.h -o -name types.h -o -name stddef.h \ -o -name stdint.h -o -name _stdint.h ; \ ls -1 /usr/include/{inttypes,stdint}.h \ /lib/gcc/x86_64-pc-cygwin/*/include/std{def,int}.h /usr/include/asm/types.h /usr/include/machine/types.h /usr/include/machine/_default_types.h /usr/include/machine/_types.h /usr/include/sys/types.h /usr/include/sys/_stdint.h /usr/include/sys/_types.h /lib/gcc/x86_64-pc-cygwin/7.4.0/include/stddef.h /lib/gcc/x86_64-pc-cygwin/7.4.0/include/stdint.h /usr/include/inttypes.h /usr/include/stdint.h -- Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada This email may be disturbing to some readers as it contains too much technical detail. Reader discretion is advised. -- 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