On Tue, Mar 10, 2009 at 05:34:55PM -0700, Carl Worth wrote: > > Looks like we need to make our tar-file generation more clever, (or > actually less clever). It's configuring the list of files to include in > the tar file based on whether xvmclib is detected on the build machine. > You can probably guess that I didn't have this installed previously. So > that's why make distcheck worked for me as well.
Here's an untested patch (too old drm on this system) that should do the right thing. -- Dan >From 8543a814fbbe4c2032b2ae96634847ca374f5ba6 Mon Sep 17 00:00:00 2001 From: Dan Nicholson <[email protected]> Date: Tue, 10 Mar 2009 20:06:17 -0700 Subject: [PATCH] Fix dist of xvmc sources The XVMC AM_CONDITIONAL is only needed around the library expression. None of the other definitons will cause anything to be built without libXvMC, but they're needed for 'make dist'. Signed-off-by: Dan Nicholson <[email protected]> --- src/xvmc/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/xvmc/Makefile.am b/src/xvmc/Makefile.am index 9e62683..a376eb7 100644 --- a/src/xvmc/Makefile.am +++ b/src/xvmc/Makefile.am @@ -1,5 +1,6 @@ if XVMC lib_LTLIBRARIES=libI810XvMC.la libIntelXvMC.la +endif libI810XvMC_la_SOURCES = I810XvMC.c \ I810XvMC.h @@ -123,4 +124,3 @@ BUILT_SOURCES= $(INTEL_G4B) clean-local: -rm -f $(INTEL_G4B) endif -endif -- 1.5.6.6 _______________________________________________ xorg mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/xorg
