Re: Dill 3.0.5 breaks on Mac OS
Johannes Hofmann <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
could you please try with attached patch applied? Cheers, Johannes On Fri, Feb 26, 2016 at 08:58:36PM -0500, Yves de Champlain wrote: > Hi > > As I said in a subsequent mail, 3.0.4 does not work either anymore > > yves > > > > Le 26 févr. 2016 à 06:00, Johannes Hofmann <[email protected]> a écrit : > > > > interesting. could you please try again if dillo-3.0.4 still works > > with your current setup? > > > > Cheers, > > Johannes > > > > On Fri, Feb 26, 2016 at 01:29:43PM +0300, Martin Atukunda wrote: > >> I tried to send email about this very issue to this mailing list, but the > >> mail failed for some obscure reason. > >> > >> Thanks for bringing this up. > >> > >> Cheers > >> > >> - Martin - > >> On 23 Feb 2016 23:12, "Yves de Champlain" <[email protected]> wrote: > >> > >>> Hi > >>> > >>> When compiling dillo 3.0.5 on Mac OS 10.11, I get : > >>> > >>> /usr/bin/c++ -DHAVE_CONFIG_H -I. -I.. -I.. > >>> -DDILLO_SYSCONF='"/opt/local/etc/dillo/"' > >>> -DDILLO_DOCDIR='"/opt/local/share/doc/dillo/"' -I/opt/local/include > >>> -I/usr/local/include -I/opt/local/include/libpng16 -I/opt/local/include > >>> -pipe -Os -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_THREAD_SAFE > >>> -D_REENTRANT -pipe -Os -m64 -Wall -W -Wno-unused-parameter -fno-rtti > >>> -fno-exceptions -MT xembed.o -MD -MP -MF .deps/xembed.Tpo -c -o xembed.o > >>> xembed.cc > >>> mv -f .deps/dpiapi.Tpo .deps/dpiapi.Po > >>> mv -f .deps/image.Tpo .deps/image.Po > >>> mv -f .deps/imgbuf.Tpo .deps/imgbuf.Po > >>> mv -f .deps/form.Tpo .deps/form.Po > >>> mv -f .deps/findbar.Tpo .deps/findbar.Po > >>> mv -f .deps/menu.Tpo .deps/menu.Po > >>> In file included from xembed.cc:18: > >>> In file included from /opt/local/include/FL/x.H:43: > >>> /opt/local/include/FL/mac.H:104:12: fatal error: '../src/Fl_Font.H' file > >>> not found > >>> # include "../src/Fl_Font.H" > >>> > >>> > >>> It seems that dillo is trying to use X but on Mac, but fltk is using > >>> quartz. > >>> > >>> The problem has been reported on many systems. > >>> > >>> Dillo 3.0.4 was working fine. > >>> > >>> Thanks > >>> > >>> yves > >>> > >>> > >>> > >>> _______________________________________________ > >>> Dillo-dev mailing list > >>> [email protected] > >>> http://lists.dillo.org/cgi-bin/mailman/listinfo/dillo-dev > >>> > > > >> _______________________________________________ > >> Dillo-dev mailing list > >> [email protected] > >> http://lists.dillo.org/cgi-bin/mailman/listinfo/dillo-dev > > > > > > _______________________________________________ > > Dillo-dev mailing list > > [email protected] > > http://lists.dillo.org/cgi-bin/mailman/listinfo/dillo-dev > _______________________________________________ Dillo-dev mailing list [email protected] http://lists.dillo.org/cgi-bin/mailman/listinfo/dillo-dev
xembed_mac.diff
(text/x-diff, 365 B)
diff -r 50d1c1aff6ae src/xembed.cc
--- a/src/xembed.cc Mon Jan 25 19:48:54 2016 +0100
+++ b/src/xembed.cc Sun Feb 28 10:13:30 2016 +0100
@@ -15,11 +15,11 @@
#define FL_INTERNALS
#include <FL/Fl_Window.H>
#include <FL/Fl.H>
-#include <FL/x.H>
#include "xembed.hh"
#ifdef X_PROTOCOL
+#include <FL/x.H>
typedef enum {
XEMBED_EMBEDDED_NOTIFY = 0,