Browse Source

glide3: fixed to find libX11 without X11R6 hackery

karasz/new-early
Alejandro Mery 15 years ago
parent
commit
8e52f054bd
  1. 10
      x11/glide3/glide3.conf

10
x11/glide3/glide3.conf

@ -3,7 +3,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# #
# Filename: package/.../glide3/glide3.conf # Filename: package/.../glide3/glide3.conf
# Copyright (C) 2008 The OpenSDE Project # Copyright (C) 2008 - 2009 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project # Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf # Copyright (C) 1998 - 2003 Clifford Wolf
# #
@ -34,11 +34,9 @@ glide3_preconf() {
case "$buildloop" in case "$buildloop" in
1) 1)
hw=h5 hw=h5
var_append makeopt ' ' "DRI=1"
;; ;;
2) 2)
hw=h3 hw=h3
var_append makeopt ' ' "DRI=1"
;; ;;
3) 3)
hw=cvg hw=cvg
@ -47,6 +45,12 @@ glide3_preconf() {
hw=sst1 hw=sst1
;; ;;
esac esac
if [ "$hw" = h3 -o "$hw" = h5 ]; then
var_append makeopt ' ' "DRI=1"
var_append makeopt ' ' "XPATH=$xlibdir"
fi
var_append makeopt ' ' "FX_GLIDE_HW=\$hw" var_append makeopt ' ' "FX_GLIDE_HW=\$hw"
} }

Loading…
Cancel
Save