Fix patch-aa (I forgot to update it before committing this port).

Submitted by:	bento
This commit is contained in:
Maxim Sobolev 2000-11-16 09:18:00 +00:00
parent 3ee7f1248c
commit 94280db88f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=35181
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
--- Makefile.orig Mon Oct 23 14:21:41 2000
+++ Makefile Tue Nov 14 10:43:17 2000
+++ Makefile Thu Nov 16 11:12:35 2000
@@ -4,11 +4,13 @@
# Edit the entries below for your system:
# In most cases you don't have to
@ -11,8 +11,8 @@
-CFLAGS = `gtk-config --cflags`
-LIBS = `gtk-config --libs`
+CC ?= gcc
+_CFLAGS != `$(GTK_CONFIG) --cflags`
+_LIBS != `$(GTK_CONFIG) --libs`
+_CFLAGS != $(GTK_CONFIG) --cflags
+_LIBS != $(GTK_CONFIG) --libs
+CFLAGS += $(_CFLAGS)
+LIBS += $(_LIBS)

View File

@ -1,5 +1,5 @@
--- Makefile.orig Mon Oct 23 14:21:41 2000
+++ Makefile Tue Nov 14 10:43:17 2000
+++ Makefile Thu Nov 16 11:12:35 2000
@@ -4,11 +4,13 @@
# Edit the entries below for your system:
# In most cases you don't have to
@ -11,8 +11,8 @@
-CFLAGS = `gtk-config --cflags`
-LIBS = `gtk-config --libs`
+CC ?= gcc
+_CFLAGS != `$(GTK_CONFIG) --cflags`
+_LIBS != `$(GTK_CONFIG) --libs`
+_CFLAGS != $(GTK_CONFIG) --cflags
+_LIBS != $(GTK_CONFIG) --libs
+CFLAGS += $(_CFLAGS)
+LIBS += $(_LIBS)