mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
1680b96495
PR: 12040 Submitted by: Chris Piazza <cpiazza@home.net>
13 lines
592 B
Plaintext
13 lines
592 B
Plaintext
--- Makefile.orig Sat Jun 5 16:31:00 1999
|
|
+++ Makefile Sat Jun 5 16:31:25 1999
|
|
@@ -1,6 +1,6 @@
|
|
-CC = gcc
|
|
-LIBS = `gtk-config --libs` `glib-config --libs` -L/usr/X11R6/lib -lX11
|
|
-CFLAGS = -g -O2 -Wall `gtk-config --cflags` `glib-config --cflags` -I/usr/X11R6/include
|
|
+CC ?= gcc
|
|
+LIBS = `gtk12-config --libs` `glib12-config --libs` -L/usr/X11R6/lib -lX11
|
|
+CFLAGS += `gtk12-config --cflags` `glib12-config --cflags` -I/usr/X11R6/include
|
|
|
|
OBJECTS = toolbox.o sigfunc.o widget.o tree.o uibox.o color.o io.o parser.o
|
|
SOURCES = toolbox.c sigfunc.c widget.c tree.c uibox.c color.c io.c parser.c
|