1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/audio/gqmpeg-devel/files/patch-aa

22 lines
735 B
Plaintext
Raw Normal View History

1998-12-09 06:56:52 +00:00
--- Makefile.orig Tue Dec 8 13:26:31 1998
+++ Makefile Wed Dec 9 14:34:57 1998
@@ -1,14 +1,12 @@
# 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
1998-12-09 06:56:52 +00:00
-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)
1998-12-09 06:56:52 +00:00
CC = gcc -Wall $(CFLAGS) $(SHAPED_HACK)