diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-09-14 09:19:10 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-09-14 09:26:02 +0100 |
commit | 6d4f3c40eff7d070b1c9759038444928c6754efe (patch) | |
tree | 80b9f7889b2d2e384e73ef970a5f90417f0341e7 /util | |
parent | 9ad26f74b0059645d865a20c387fa4bd460cabc8 (diff) |
Add a private copy of GLEW
This appears to be the simplest mechanism to build libglew at the moment -
should a system copy be unavailable. Fortunately libglew is now distributed
under a permissive licence.
If you want to pass 'make -C src check' you have to use the system copy,
or spend quite a bit of time cairo-fying libglew.
Diffstat (limited to 'util')
-rw-r--r-- | util/cairo.modules | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/util/cairo.modules b/util/cairo.modules index fc1e5900..b83114d4 100644 --- a/util/cairo.modules +++ b/util/cairo.modules @@ -6,11 +6,19 @@ <repository type="git" name="git.freedesktop.org" href="git://anongit.freedesktop.org/git/"/> - <autotools id="cairo"> + <autotools id="glitz"> + <branch repo="git.freedesktop.org" module="glitz"/> + <dependencies> + <dep package="libGL"/> + </dependencies> + </autotools> + + <autotools id="cairo" autogenargs="--enable-gl --enable-glitz"> <branch repo="git.freedesktop.org" module="cairo"/> <dependencies> <dep package="pixman"/> <dep package="fontconfig"/> + <dep package="glitz"/> </dependencies> <after> <dep package="libXrender"/> |