Re: [mpg123-devel] Please test new network code in/out of mpg123 (now with HTTPS support)!
Brought to you by:
sobukus
From: Dave Y. <dav...@gm...> - 2022-05-14 14:43:47
|
On 05/14/22 12:17 AM, Thomas Orgis wrote: > Am Sat, 14 May 2022 00:00:37 -0700 > schrieb Dave Yeo <dav...@gm...>: > >>>> The above works for configure but the -idirafter doesn't end up in the >>>> makefiles. >>> >>> Is it present in the final configure printouts about the configuration? >> >> No > > Does the build work now? I committed a change that sets OS2_CFLAGS and > only temporarily adds them to CFLAGS for the test. I am not sure at > what point the value got purged before, but it's cleaner that way. > > I removed the EMX ifdefs in local.c now. Now let's settle terminal > control. It shouldn't be so hard to get single keypresses. > Hmm, now we're missing TIOCGWINSZ, wonder if I forgot to do make clean last night? I was tired. ../mpg123.svn/src/term_posix.c: In function 'term_width': ../mpg123.svn/src/term_posix.c:62:17: error: storage size of 'geometry' isn't known 62 | struct winsize geometry; | ^~~~~~~~ ../mpg123.svn/src/term_posix.c:64:15: error: 'TIOCGWINSZ' undeclared (first use in this function) 64 | if(ioctl(fd, TIOCGWINSZ, &geometry) >= 0) | ^~~~~~~~~~ ../mpg123.svn/src/term_posix.c:64:15: note: each undeclared identifier is report ed only once for each function it appears in make: *** [src/term_posix.o] Error 1 Dave |