mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
- upgrading docs to 030216; - de-pkg-comment; - SUPPORT_ACCESSIBILITY_CHECKS, SUPPORT_UTF16_ENCODINGS, and SUPPORT_ASIAN_ENCODINGS are enabled. PR: 48441 Submitted by: Thierry Thomas <thierry@pompo.net>
37 lines
1.1 KiB
Text
37 lines
1.1 KiB
Text
--- Makefile.orig Tue Feb 18 08:57:03 2003
|
|
+++ Makefile Tue Feb 18 21:59:51 2003
|
|
@@ -58,8 +58,8 @@
|
|
PROJECT=tidy
|
|
|
|
# Installation variables. Spaces OK, only dir create and file copy operations.
|
|
-runinst_prefix=/usr/local
|
|
-devinst_prefix=/usr/local
|
|
+runinst_prefix=${PREFIX}
|
|
+devinst_prefix=${PREFIX}
|
|
|
|
bininst = ${runinst_prefix}/bin
|
|
libinst = ${devinst_prefix}/lib
|
|
@@ -67,7 +67,7 @@
|
|
maninst = ${devinst_prefix}/man
|
|
|
|
# Internal variables. - No spaces allowed: libtool chokes on spaces in directory names.
|
|
-TOPDIR = ../..
|
|
+TOPDIR = .
|
|
INCDIR = ${TOPDIR}/include
|
|
APPDIR = ${TOPDIR}/console
|
|
SRCDIR = ${TOPDIR}/src
|
|
@@ -76,10 +76,11 @@
|
|
BINDIR = ${TOPDIR}/bin
|
|
|
|
# CFLAGS etc..
|
|
-CC= gcc
|
|
-CFLAGS= -Wall -Wno-switch -Wno-parentheses -Wno-unused -I $(INCDIR)
|
|
+#CC= gcc
|
|
+#CFLAGS= -Wall -Wno-switch -Wno-parentheses -Wno-unused -I $(INCDIR)
|
|
+CFLAGS+= -I $(INCDIR)
|
|
|
|
-# OTHERCFLAGS= -DSUPPORT_ACCESSIBILITY_CHECKS=1 -DSUPPORT_UTF16_ENCODINGS=1 -DSUPPORT_ASIAN_ENCODINGS=1
|
|
+OTHERCFLAGS= -DSUPPORT_ACCESSIBILITY_CHECKS=1 -DSUPPORT_UTF16_ENCODINGS=1 -DSUPPORT_ASIAN_ENCODINGS=1
|
|
ifdef SUPPORT_UTF16_ENCODINGS
|
|
CFLAGS += -DSUPPORT_UTF16_ENCODINGS=$(SUPPORT_UTF16_ENCODINGS)
|
|
endif
|