diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-08-24 17:53:11 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-08-24 17:53:11 +0800 |
commit | 917e9005726f875d64c0ce5e673bf4bd29637d40 (patch) | |
tree | 45ca1072ec5c20064d533dd76daded3544308cc2 /graphics/Mesa3/files | |
parent | a741f873835e9688581f4349e59e145aaf70c301 (diff) | |
download | freebsd-ports-gnome-917e9005726f875d64c0ce5e673bf4bd29637d40.tar.gz freebsd-ports-gnome-917e9005726f875d64c0ce5e673bf4bd29637d40.tar.zst freebsd-ports-gnome-917e9005726f875d64c0ce5e673bf4bd29637d40.zip |
Update to 3.2.1 and make it working on XFree86-4.
On XFree86-4 the port builds/installs only GLU and glut libraries and associated
includes, so GL applications have a chance to use GL library provided by the
XFree itself. Please don't forget to set XFREE86_VERSION=4 in your make.conf
if you are building it with XFee86-4.
Approved by: jseger (previous maintainer)
Diffstat (limited to 'graphics/Mesa3/files')
-rw-r--r-- | graphics/Mesa3/files/patch-aa | 10 | ||||
-rw-r--r-- | graphics/Mesa3/files/patch-ad | 20 |
2 files changed, 25 insertions, 5 deletions
diff --git a/graphics/Mesa3/files/patch-aa b/graphics/Mesa3/files/patch-aa index 0c4ebf03a0fa..335bb2418f85 100644 --- a/graphics/Mesa3/files/patch-aa +++ b/graphics/Mesa3/files/patch-aa @@ -1,11 +1,11 @@ ---- configure.orig Mon Apr 24 09:53:56 2000 -+++ configure Tue Apr 25 10:51:16 2000 -@@ -817,9 +817,9 @@ +--- configure.orig Thu Jul 20 18:25:10 2000 ++++ configure Thu Aug 24 11:34:45 2000 +@@ -822,9 +822,9 @@ MESA_MAJOR=3 MESA_MINOR=2 - MESA_TINY=0 + MESA_TINY=1 -LIBGL_VERSION=1:2:0${MESA_MAJOR}0${MESA_MINOR}0${MESA_TINY} --LIBGLU_VERSION=1:2:0${MESA_MAJOR}0${MESA_MINOR}0${MESA_TINY} +-LIBGLU_VERSION=1:1:0${MESA_MAJOR}0${MESA_MINOR}0${MESA_TINY} -LIBGLUT_VERSION=3:7:0 +LIBGL_VERSION=${GLVER}:0 +LIBGLU_VERSION=${GLVER}:0 diff --git a/graphics/Mesa3/files/patch-ad b/graphics/Mesa3/files/patch-ad new file mode 100644 index 000000000000..0fb76eb6fbb1 --- /dev/null +++ b/graphics/Mesa3/files/patch-ad @@ -0,0 +1,20 @@ +--- Makefile.in 2000/08/22 07:27:14 1.1 ++++ Makefile.in 2000/08/22 07:29:15 +@@ -92,7 +92,7 @@ + + @NEED_GLUT_TRUE@SUB_GLUT = src-glut + +-SUBDIRS = include src src-glu $(SUB_GLUT) $(DEMO_DIRS) util ++SUBDIRS = $(INCLUDE_GL) $(SUB_GL) src-glu $(SUB_GLUT) $(DEMO_DIRS) util + + EXTRA_DIST = docs/INSTALL docs/INSTALL.GNU docs/CONFIG docs/IAFA-PACKAGE docs/RELNOTES docs/VERSIONS docs/CONFORM docs/COPYING docs/COPYRIGHT docs/README docs/README.3DFX docs/README.BEOS docs/README.GGI docs/README.MINGW32 docs/README.MITS docs/README.QUAKE docs/README.THREADS docs/README.X11 images/girl.rgb images/reflect.rgb images/tile.rgb + +@@ -110,7 +110,7 @@ + + TAR = gtar + GZIP_ENV = --best +-DIST_SUBDIRS = include src src-glu src-glut book demos samples xdemos \ ++DIST_SUBDIRS = $(INCLUDE_GL) $(SUB_GL) src-glu src-glut book demos samples xdemos \ + util + all: all-redirect + .SUFFIXES: |