ports/devel/dprog/files/patch-Makefile.in
Antoine Brodin 228ab58873 Change INSTALL_DATA to install with mode 644
Remove patches and hacks that were used to work around the previous
situation
This allows to stage more ports as a regular user

Differential Revision:	https://reviews.freebsd.org/D703
Reviewed by and discussed with:	bapt
With hat:	portmgr
2014-09-04 19:26:24 +00:00

29 lines
1.5 KiB
Text

--- Makefile.in.orig 2003-04-21 14:29:07.000000000 +0200
+++ Makefile.in 2014-03-28 11:53:55.832875969 +0100
@@ -87,7 +87,7 @@
ARCH = `uname -mrs`
DATE = `date '+%d %h %y'`
-CXXFLAGS = -DARCH="\"$(ARCH)\"" -DDATE="\"$(DATE)\"" -Wall -frepo -g
+CXXFLAGS = -DARCH="\"$(ARCH)\"" -DDATE="\"$(DATE)\"" -Wall -g
#CXXFLAGS += -pg
#CXXFLAGS += -O3
@@ -121,7 +121,7 @@
type_check_test_LDADD = @LEXLIB@
type_check_test_SOURCES = lexer.ll parser.yy ast.hh ast.cc visitor.hh pretty_printer.hh pretty_printer.cc functions.hh functions.cc cxx_codegen.hh cxx_codegen.cc symbol_checking.hh symbol_checking.cc type_checking.hh type_checking.cc options.hh options.cc type_check_test.cc
-cxx_dprog_test_LDADD = -L. -lcxx_dprog -lefence
+cxx_dprog_test_LDADD = -L. -lcxx_dprog
cxx_dprog_test_SOURCES = cxx_dprog_test.cc
symbol_checking_test_SOURCES = ast.hh ast.cc visitor.hh pretty_printer.hh pretty_printer.cc symbol_checking.hh symbol_checking.cc type_checking.hh type_checking.cc functions.hh functions.cc codegen.hh codegen.cc cxx_codegen.hh cxx_codegen.cc options.hh options.cc symbol_checking_test.cc
@@ -169,7 +169,7 @@
codegen_test_LDFLAGS =
am_cxx_dprog_test_OBJECTS = cxx_dprog_test.$(OBJEXT)
cxx_dprog_test_OBJECTS = $(am_cxx_dprog_test_OBJECTS)
-cxx_dprog_test_DEPENDENCIES =
+cxx_dprog_test_DEPENDENCIES = $(lib_LIBRARIES)
cxx_dprog_test_LDFLAGS =
am_dprog_OBJECTS = lexer.$(OBJEXT) parser.$(OBJEXT) ast.$(OBJEXT) \
pretty_printer.$(OBJEXT) range_checking.$(OBJEXT) \