Re: [cfarm-users] need help in porting libbsd to Solaris-10

2024-04-30 Thread Paul H. Hargrove via cfarm-users
The error has "ABI_GETDELIM", but your first quoted line has "getgelim". (note second "g" where you almost certainly meant "d"). On Tue, Apr 30, 2024 at 6:26 AM Aleksey Cheusov wrote: > > Based on just a couple minutes looking at the autoconf/automake goop, it > > appears that AM_CONDITIONAL is

Re: [cfarm-users] need help in porting libbsd to Solaris-10

2024-04-30 Thread Aleksey Cheusov via cfarm-users
> Based on just a couple minutes looking at the autoconf/automake goop, it > appears that AM_CONDITIONAL is called for all the ABI_ identifiers > via LIBBSD_SELECT_ABI (defined in m4/libbsd-compiler.m4). So, you are > missing a LIBBSD_SELECT_ABI([getdelim], SOMETHING) in configure.ac. I have the

Re: [cfarm-users] need help in porting libbsd to Solaris-10

2024-04-30 Thread Paul H. Hargrove via cfarm-users
Based on just a couple minutes looking at the autoconf/automake goop, it appears that AM_CONDITIONAL is called for all the ABI_ identifiers via LIBBSD_SELECT_ABI (defined in m4/libbsd-compiler.m4). So, you are missing a LIBBSD_SELECT_ABI([getdelim], SOMETHING) in configure.ac. -Paul On Tue, Apr

[cfarm-users] need help in porting libbsd to Solaris-10

2024-04-30 Thread Aleksey Cheusov via cfarm-users
Hi every one. I'm trying to port libbsd to Solaris-10. In particular I want to add support for fgetln(3), getline(3) and getdelim(3). I'm in truble with autoconf. Updated sources are here (branch "main") https://github.com/cheusov/libbsd/tree/main The problem is below. Can any one help?