Re: usr.bin/getconf: Add reporting LONG_BIT

2019-05-28 Thread Brian Callahan
On 5/28/19 8:21 AM, Jeremie Courreges-Anglas wrote: On Mon, May 27 2019, Philip Guenther wrote: On Mon, May 27, 2019 at 3:43 PM Brian Callahan wrote: Below is a small diff in response to some configuration attempts found in ports land. lang/ponyc uses $(shell getconf LONG_BIT) in its

Re: usr.bin/getconf: Add reporting LONG_BIT

2019-05-28 Thread Jeremie Courreges-Anglas
On Mon, May 27 2019, Philip Guenther wrote: > On Mon, May 27, 2019 at 3:43 PM Brian Callahan wrote: > >> Below is a small diff in response to some configuration attempts >> found in ports land. >> lang/ponyc uses $(shell getconf LONG_BIT) in its Makefile to >> determine whether or not we're on a

Re: usr.bin/getconf: Add reporting LONG_BIT

2019-05-28 Thread Brian Callahan
On 5/28/19 7:24 AM, Christian Weisgerber wrote: Brian Callahan: lang/ponyc uses $(shell getconf LONG_BIT) in its Makefile to determine whether or not we're on a 64-bit platform. However, our getconf(1) doesn't support reporting LONG_BIT. This diff enables it. GNU/FreeBSD/DragonFly/MacOS

Re: usr.bin/getconf: Add reporting LONG_BIT

2019-05-28 Thread Christian Weisgerber
Brian Callahan: > lang/ponyc uses $(shell getconf LONG_BIT) in its Makefile to > determine whether or not we're on a 64-bit platform. > However, our getconf(1) doesn't support reporting LONG_BIT. > This diff enables it. GNU/FreeBSD/DragonFly/MacOS getconf reports > LONG_BIT, but NetBSD getconf

Re: usr.bin/getconf: Add reporting LONG_BIT

2019-05-27 Thread Philip Guenther
On Mon, May 27, 2019 at 3:43 PM Brian Callahan wrote: > Below is a small diff in response to some configuration attempts > found in ports land. > lang/ponyc uses $(shell getconf LONG_BIT) in its Makefile to > determine whether or not we're on a 64-bit platform. > It needs to know that at the

usr.bin/getconf: Add reporting LONG_BIT

2019-05-27 Thread Brian Callahan
Hi tech -- Below is a small diff in response to some configuration attempts found in ports land. lang/ponyc uses $(shell getconf LONG_BIT) in its Makefile to determine whether or not we're on a 64-bit platform. However, our getconf(1) doesn't support reporting LONG_BIT. This diff enables it.