mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
Fix patch-aa (I forgot to update it before committing this port).
Submitted by: bento
This commit is contained in:
parent
3ee7f1248c
commit
94280db88f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=35181
@ -1,5 +1,5 @@
|
|||||||
--- Makefile.orig Mon Oct 23 14:21:41 2000
|
--- 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 @@
|
@@ -4,11 +4,13 @@
|
||||||
# Edit the entries below for your system:
|
# Edit the entries below for your system:
|
||||||
# In most cases you don't have to
|
# In most cases you don't have to
|
||||||
@ -11,8 +11,8 @@
|
|||||||
-CFLAGS = `gtk-config --cflags`
|
-CFLAGS = `gtk-config --cflags`
|
||||||
-LIBS = `gtk-config --libs`
|
-LIBS = `gtk-config --libs`
|
||||||
+CC ?= gcc
|
+CC ?= gcc
|
||||||
+_CFLAGS != `$(GTK_CONFIG) --cflags`
|
+_CFLAGS != $(GTK_CONFIG) --cflags
|
||||||
+_LIBS != `$(GTK_CONFIG) --libs`
|
+_LIBS != $(GTK_CONFIG) --libs
|
||||||
+CFLAGS += $(_CFLAGS)
|
+CFLAGS += $(_CFLAGS)
|
||||||
+LIBS += $(_LIBS)
|
+LIBS += $(_LIBS)
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
--- Makefile.orig Mon Oct 23 14:21:41 2000
|
--- 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 @@
|
@@ -4,11 +4,13 @@
|
||||||
# Edit the entries below for your system:
|
# Edit the entries below for your system:
|
||||||
# In most cases you don't have to
|
# In most cases you don't have to
|
||||||
@ -11,8 +11,8 @@
|
|||||||
-CFLAGS = `gtk-config --cflags`
|
-CFLAGS = `gtk-config --cflags`
|
||||||
-LIBS = `gtk-config --libs`
|
-LIBS = `gtk-config --libs`
|
||||||
+CC ?= gcc
|
+CC ?= gcc
|
||||||
+_CFLAGS != `$(GTK_CONFIG) --cflags`
|
+_CFLAGS != $(GTK_CONFIG) --cflags
|
||||||
+_LIBS != `$(GTK_CONFIG) --libs`
|
+_LIBS != $(GTK_CONFIG) --libs
|
||||||
+CFLAGS += $(_CFLAGS)
|
+CFLAGS += $(_CFLAGS)
|
||||||
+LIBS += $(_LIBS)
|
+LIBS += $(_LIBS)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user