<html>
<body>
  <div id="body" style="background-color:#ffffff;" >
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head" style="border-bottom-width:1px;border-bottom-style:solid;" ><td class="headtd" style="padding:0;padding-top:.2em;" colspan="4">Commit in <b><tt>lxdream</tt></b></td></tr>
<tr><td><tt><a href="#file1">configure</a></tt></td><td id="added" class="headtd2" style="padding-left:.3em;padding-right:.3em; background-color:#ddffdd;" align="right">+9</td><td></td><td class="headtd2" style="padding-left:.3em;padding-right:.3em;" nowrap="nowrap">2fbf712e53f0 -> 90292b2f2243</td></tr>
<tr class="alt" style=";" ><td><tt><a href="#file2">configure.in</a></tt></td><td id="addedalt" class="headtd2" style="padding-left:.3em;padding-right:.3em; background-color:#ccf7cc;" align="right">+6</td><td></td><td class="headtd2" style="padding-left:.3em;padding-right:.3em;" nowrap="nowrap">2fbf712e53f0 -> 90292b2f2243</td></tr>
<tr><td></td><td id="added" class="headtd2" style="padding-left:.3em;padding-right:.3em; background-color:#ddffdd;" align="right">+15</td><td></td><td></td></tr>
</table>
<small id="info" style="color: #888888;" >2 modified files</small><br />
<pre class="comment" style="white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word;padding:4px;border:1px dashed #000000;background-color:#ffffdd;" >
Abort configure when we can't find a gdk display method
Add -lX11 to the GTK-X11 lib list explicitly - on OSX at least pkg-config
    doesn't do the right thing automatically
</pre>
<hr /><a name="file1" /><div class="file" style="border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;" >
<span class="pathname" style="font-family:monospace; float:right;" >lxdream</span><br />
<div class="fileheader" style="margin-bottom:.5em;" ><big><b>configure</b></big> <small id="info" style="color: #888888;" >2fbf712e53f0 -> 90292b2f2243</small></div>
<pre class="diff" style="margin:0;" ><small id="info" style="color: #888888;" >--- lxdream/configure
+++ lxdream/configure
@@ -8997,6 +8997,8 @@
</small></pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" > 
 fi
 
</pre><pre id="added" class="diff" style="margin:0; background-color:#ddffdd;" >+            GTK_LIBS="$GTK_LIBS -lX11"
+      LIBS="$LIBS -lX11"
</pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" >    { echo "$as_me:$LINENO: checking for gdk_quartz_window_get_nsview" >&5
 echo $ECHO_N "checking for gdk_quartz_window_get_nsview... $ECHO_C" >&6; }
 if test "${ac_cv_func_gdk_quartz_window_get_nsview+set}" = set; then
</pre><pre class="diff" style="margin:0;" ><small id="info" style="color: #888888;" >@@ -9088,6 +9090,13 @@
</small></pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" > 
 fi
 
</pre><pre id="added" class="diff" style="margin:0; background-color:#ddffdd;" >+   if test "x$HAVE_GTK_X11$HAVE_GTK_OSX" = "x"; then
+      { { echo "$as_me:$LINENO: error: Unable to identify GTK platform
+See \`config.log' for more details." >&5
+echo "$as_me: error: Unable to identify GTK platform
+See \`config.log' for more details." >&2;}
+   { (exit 1); exit 1; }; }
+   fi
</pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" > fi
 
 
</pre></div>
<hr /><a name="file2" /><div class="file" style="border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;" >
<span class="pathname" style="font-family:monospace; float:right;" >lxdream</span><br />
<div class="fileheader" style="margin-bottom:.5em;" ><big><b>configure.in</b></big> <small id="info" style="color: #888888;" >2fbf712e53f0 -> 90292b2f2243</small></div>
<pre class="diff" style="margin:0;" ><small id="info" style="color: #888888;" >--- lxdream/configure.in
+++ lxdream/configure.in
@@ -210,9 +210,15 @@
</small></pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" >    AC_CHECK_FUNC(gdk_x11_display_get_xdisplay, [ 
       HAVE_GTK_X11='yes'
       AC_DEFINE([HAVE_GTK_X11],1,[Building with GTK+X11]) ], [])
</pre><pre id="added" class="diff" style="margin:0; background-color:#ddffdd;" >+      dnl Add -lX11 explicitly as some pkg-configs get it wrong
+      GTK_LIBS="$GTK_LIBS -lX11"
+      LIBS="$LIBS -lX11"
</pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" >    AC_CHECK_FUNC(gdk_quartz_window_get_nsview, [ 
       HAVE_GTK_OSX='yes'
       AC_DEFINE([HAVE_GTK_OSX],1,[Building with GTK+Cocoa]) ], [])
</pre><pre id="added" class="diff" style="margin:0; background-color:#ddffdd;" >+   if test "x$HAVE_GTK_X11$HAVE_GTK_OSX" = "x"; then
+      AC_MSG_FAILURE( [Unable to identify GTK platform] )
+   fi
</pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" > fi
 
 AM_CONDITIONAL(GUI_GTK, [test "$HAVE_GTK" = 'yes'])
</pre></div>
<center><small>Chaos Theory</small></center>
</div></body></html>