mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
7dbc023568
PR: 15094 Submitted by: Mario Ferreira <lioux@linf.unb.br>
24 lines
645 B
Plaintext
24 lines
645 B
Plaintext
diff -ru ./Makefile ../../nt-1.07.1/main/Makefile
|
|
--- ./Makefile Wed Nov 3 05:20:49 1999
|
|
+++ ../../nt-1.07.1/main/Makefile Thu Nov 25 22:18:21 1999
|
|
@@ -1,13 +1,13 @@
|
|
-CC = gcc
|
|
-CCPLUS = c++
|
|
+CC = $(CC)
|
|
+CCPLUS = $(CXX)
|
|
|
|
NLS=-DENABLE_NLS # Remove or comment this line to disable gettext
|
|
-DEST=/usr/local
|
|
+DEST=$(PREFIX)
|
|
LOCALEDIR=$(DEST)/share/locale
|
|
-LIBS=-lpthread
|
|
+LIBS=-pthread
|
|
CFLAGS=-Wall -O2 -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS
|
|
-GTKLIBS=`gtk-config --libs`
|
|
-GTKFLAGS=`gtk-config --cflags`
|
|
+GTKLIBS=`gtk12-config --libs`
|
|
+GTKFLAGS=`gtk12-config --cflags`
|
|
|
|
EXECC=$(CCPLUS) $(CFLAGS) $(GTKFLAGS) $(NLS) -DLOCALE=\"${LOCALEDIR}\"
|
|
|