Hi Mike,
thanks, fixed in *SVN 1926*.
Best Regards,
Jürgen
On 12/7/25 14:50, M.Hall wrote:
This is great! Thank you. (Maybe PostScript one day?)
However, on macos 15.7, arm64:
$ svn up
(gets 1925 OK)
$ ./configure 'CXXFLAGS=-std=gnu++14' '--without-x'
$ make
...
g++ -DHAVE_CONFIG_H -I. -I.. -Wall -I sql -I
/Volumes/Work/Language/APL/gnu-apl/SVN -std=gnu++14 -I
/Volumes/ARCHIVE/language/apl/gnu-apl/SVN -MT apl-Plot_ascii.o -MD -MP
-MF .deps/apl-Plot_ascii.Tpo -c -o apl-Plot_ascii.o `test -f
'Plot_ascii.cc' || echo './'`Plot_ascii.cc
Plot_ascii.cc:117:11: warning: 'delete' applied to a pointer that was
allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
117 | { delete points; }
| ^
| []
Plot_ascii.cc:113:14: note: allocated with 'new[]' here
113 | points(new ASCII_Point[h*w + 1])
| ^
1 warning generated.
...
g++ -DHAVE_CONFIG_H -I. -I.. -Wall -I sql -I
/Volumes/ARCHIVE/language/apl/gnu-apl/SVN -std=gnu++14 -I
/Volumes/ARCHIVE/language/apl/gnu-apl/SVN -MT apl-Quad_PLOT.o -MD -MP
-MF .deps/apl-Quad_PLOT.Tpo -c -o apl-Quad_PLOT.o `test -f
'Quad_PLOT.cc' || echo './'`Quad_PLOT.cc
Quad_PLOT.cc:162:11: fatal error: 'xcb/xcb.h' file not found
162 | # include <xcb/xcb.h>
| ^~~~~~~~~~~
1 error generated.
make[3]: *** [apl-Quad_PLOT.o] Error 1
Lines 162-163 of Quad_PLOT.cc unconditionally pull in 'xcb' libraries.
When I comment those out, it builds OK.
Thanks!
--
Mike Hall