|
From: Allin C. <cot...@wf...> - 2016-10-02 20:25:06
|
I just tried (cross-)compiling current CVS gnuplot using 32-bit mingw (something that has worked fine for me in the past), and I see that recent changes under src/win have made this problematic: - building wgraph.o fails for lack of the symbols PBS_MARQUEE and PBM_SETMARQUEE - building wprinter.o fails for lack of IPrintDialogCallback and associated stuff The first of these issues -- as I found by googling -- is fairly easily solved. It suffices to insert #ifndef PBS_MARQUEE # define PBS_MARQUEE 0x08 # define PBM_SETMARQUEE (WM_USER+10) #endif before the function CopyPrint() in wgraph.c. But I haven't yet found a comparable workaround for IPrintDialogCallback and friends. Allin Cottrell -- Allin Cottrell Department of Economics Wake Forest University |