1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/audio/gqmpeg/files/patch-aa
1998-12-01 08:59:55 +00:00

23 lines
745 B
Plaintext

--- Makefile.orig Thu Nov 26 09:21:17 1998
+++ Makefile Sat Nov 28 15:33:23 1998
@@ -4,15 +4,15 @@
# This enables a hack for those whose X servers are having problems with
# shaped window skins (like X crashes) this may help, but is not perfect.
-#SHAPED_HACK = -Dshaped_window_hack=1
+SHAPED_HACK = -Dshaped_window_hack=1
PREFIX=/usr/local
-GTK_INCLUDE = `gtk-config --cflags`
-GTK_LIB = `gtk-config --libs`
+GTK_INCLUDE = `gtk11-config --cflags`
+GTK_LIB = `gtk11-config --libs`
IMLIB_INCLUDE = `imlib-config --cflags-gdk`
IMLIB_LIB = `imlib-config --libs-gdk`
-CFLAGS = $(GTK_INCLUDE) $(IMLIB_INCLUDE)
+CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE)
LDFLAGS = $(GTK_LIB) $(IMLIB_LIB)
CC = gcc -Wall $(CFLAGS) $(DEFS) $(SHAPED_HACK)