1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/audio/gqmpeg-devel/files/patch-aa
Steve Price 6d2faeb0e1 Update to version 0.6.1 and use new version of imlib.
PR:		11843
Submitted by:	Jeremy Lea <reg@shale.csir.co.za>

PR:		11909
Submitted by:	Chirs Piazza <cpiazza@home.net>
1999-05-29 04:08:02 +00:00

28 lines
700 B
Plaintext

--- Makefile.orig Tue May 25 18:10:24 1999
+++ Makefile Tue May 25 18:11:45 1999
@@ -1,12 +1,11 @@
-PREFIX=/usr/local
-GTK_INCLUDE = `gtk-config --cflags`
-GTK_LIB = `gtk-config --libs`
+GTK_INCLUDE = `gtk12-config --cflags`
+GTK_LIB = `gtk12-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)
#The following commented out lines are for replacing the stock defines on
@@ -18,7 +17,7 @@
#for IRIX
#LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) -laudio
-CC = gcc -Wall
+CC += -Wall
GNOME_PREFIX = `gnome-config --prefix`