<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.26.0">
</HEAD>
<BODY>
On Mon, 2010-06-14 at 15:07 -0700, Dan Nicholson wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
On Sun, Jun 13, 2010 at 1:49 PM, Gaetan Nadon &lt;<A HREF="mailto:memsize@videotron.ca">memsize@videotron.ca</A>&gt; wrote:
&gt; Any module (drivers) depending on xserver also depends on some of the
&gt; server private dependencies. Any driver including xf86.h depends on
&gt; xext, kbproto, inputproto and randr.
&gt;
&gt; These dependencies are in separate packages, so anything can happen,
&gt; removal, wrong version, etc... and the driver fails during compilation.
&gt; Having the private dependencies declared will ensure all packages the
&gt; server depends on are present and at the correct version.
&gt;
&gt; Currently each module attempts to check for server dependencies with
&gt; various degrees of accuracy. With this patch, the driver will only need
&gt; to check for its own explicit dependencies.
&gt;
&gt; Signed-off-by: Gaetan Nadon &lt;<A HREF="mailto:memsize@videotron.ca">memsize@videotron.ca</A>&gt;
&gt; ---
&gt; &nbsp;configure.ac &nbsp; &nbsp; &nbsp;| &nbsp; &nbsp;9 ++++++++-
&gt; &nbsp;xorg-server.pc.in | &nbsp; &nbsp;1 +
&gt; &nbsp;2 files changed, 9 insertions(+), 1 deletions(-)
&gt;
&gt; diff --git a/configure.ac b/configure.ac
&gt; index 4ada8f5..cb33637 100644
&gt; --- a/configure.ac
&gt; +++ b/configure.ac
&gt; @@ -793,9 +793,13 @@ WINDOWSWMPROTO=&quot;windowswmproto&quot;
&gt; &nbsp;APPLEWMPROTO=&quot;applewmproto &gt;= 1.4&quot;
&gt;
&gt; &nbsp;dnl Core modules for most extensions, et al.
&gt; -REQUIRED_MODULES=&quot;[randrproto &gt;= 1.2.99.3] [renderproto &gt;= 0.11] [fixesproto &gt;= 4.1] [damageproto &gt;= 1.1] [xcmiscproto &gt;= 1.2.0] [xextproto &gt;= 7.0.99.3] [xproto &gt;= 7.0.17] [xtrans &gt;= 1.2.2] [bigreqsproto &gt;= 1.1.0] fontsproto [inputproto &gt;= 1.9.99.902] [kbproto &gt;= 1.0.3]&quot;
&gt; +SDK_REQUIRED_MODULES=&quot;[randrproto &gt;= 1.2.99.3] [renderproto &gt;= 0.11] [xextproto &gt;= 7.0.99.3] [inputproto &gt;= 1.9.99.902] [kbproto &gt;= 1.0.3]&quot;
&gt; +REQUIRED_MODULES=&quot;[fixesproto &gt;= 4.1] [damageproto &gt;= 1.1] [xcmiscproto &gt;= 1.2.0] [xproto &gt;= 7.0.17] [xtrans &gt;= 1.2.2] [bigreqsproto &gt;= 1.1.0] fontsproto $SDK_REQUIRED_MODULES&quot;
&gt; &nbsp;REQUIRED_LIBS=&quot;xfont xau&quot;
&gt;
&gt; +# Make SDK_REQUIRED_MODULES available for inclusion in xorg-server.pc
&gt; +AC_SUBST(SDK_REQUIRED_MODULES)
&gt; +
&gt; &nbsp;dnl List of libraries that require a specific version
&gt; &nbsp;LIBAPPLEWM=&quot;applewm &gt;= 1.4&quot;
&gt; &nbsp;LIBDMX=&quot;dmx &gt;= 1.0.99.1&quot;
&gt; @@ -947,6 +951,7 @@ if test &quot;x$XV&quot; = xyes; then
&gt; &nbsp; &nbsp; &nbsp; &nbsp;AC_DEFINE(XV, 1, [Support Xv extension])
&gt; &nbsp; &nbsp; &nbsp; &nbsp;AC_DEFINE(XvExtension, 1, [Build Xv extension])
&gt; &nbsp; &nbsp; &nbsp; &nbsp;REQUIRED_MODULES=&quot;$REQUIRED_MODULES $VIDEOPROTO&quot;
&gt; + &nbsp; &nbsp; &nbsp; SDK_REQUIRED_MODULES=&quot;$SDK_REQUIRED_MODULES $VIDEOPROTO&quot;
&gt; &nbsp;else
&gt; &nbsp; &nbsp; &nbsp; &nbsp;XVMC=no
&gt; &nbsp;fi
&gt; @@ -1036,6 +1041,7 @@ case &quot;$DRI2,$HAVE_DRI2PROTO&quot; in
&gt; &nbsp; &nbsp; &nbsp; &nbsp;yes,yes | auto,yes)
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AC_DEFINE(DRI2, 1, [Build DRI2 extension])
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DRI2=yes
&gt; + &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SDK_REQUIRED_MODULES=&quot;$SDK_REQUIRED_MODULES $DRI2PROTO&quot;
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;
&gt; &nbsp;esac
&gt; &nbsp;AM_CONDITIONAL(DRI2, test &quot;x$DRI2&quot; = xyes)
&gt; @@ -1074,6 +1080,7 @@ if test &quot;x$XINERAMA&quot; = xyes; then
&gt; &nbsp; &nbsp; &nbsp; &nbsp;AC_DEFINE(XINERAMA, 1, [Support Xinerama extension])
&gt; &nbsp; &nbsp; &nbsp; &nbsp;AC_DEFINE(PANORAMIX, 1, [Internal define for Xinerama])
&gt; &nbsp; &nbsp; &nbsp; &nbsp;REQUIRED_MODULES=&quot;$REQUIRED_MODULES $XINERAMAPROTO&quot;
&gt; + &nbsp; &nbsp; &nbsp; SDK_REQUIRED_MODULES=&quot;$SDK_REQUIRED_MODULES $XINERAMAPROTO&quot;
&gt; &nbsp;fi
&gt;
&gt; &nbsp;AM_CONDITIONAL(XACE, [test &quot;x$XACE&quot; = xyes])
&gt; diff --git a/xorg-server.pc.in b/xorg-server.pc.in
&gt; index 44f886a..1fa4fb5 100644
&gt; --- a/xorg-server.pc.in
&gt; +++ b/xorg-server.pc.in
&gt; @@ -16,5 +16,6 @@ Name: xorg-server
&gt; &nbsp;Description: Modular X.Org X Server
&gt; &nbsp;Version: @PACKAGE_VERSION@
&gt; &nbsp;Requires: pixman-1 pciaccess xproto &gt;= 7.0.17
&gt; +Requires.private: @SDK_REQUIRED_MODULES@

Could you also move the xproto requirement from REQUIRED_MODULES to
SDK_REQUIRED_MODULES so it's always populated from configure.ac? Maybe
that can go in another commit. Probably all the modules should be in
Requires.private, but that's probably another commit, too.

</PRE>
</BLOCKQUOTE>
I originally put all modules (save for xproto) in Requires.private. Julien suggested to put only the modules exposed in the sdk. <BR>
<BR>
As for xproto, all drivers use it explicitly and need the include path. I thought it was safer to leave it there as there might be an older driver that did not list xproto on the PKG_CHECK_MODULES statement and could potentially break. I am not sure I understand why you were suggesting that. <BR>
<BR>
Thanks<BR>
<BR>
<BLOCKQUOTE TYPE=CITE>
<PRE>
Looks good.

Reviewed-by: Dan Nicholson &lt;<A HREF="mailto:dbn.lists@gmail.com">dbn.lists@gmail.com</A>&gt;

--
Dan
</PRE>
</BLOCKQUOTE>
</BODY>
</HTML>