diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2014-08-12 15:29:37 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2014-08-12 15:29:37 +0000 |
commit | cdb8256f1be073ee580443f055cea42dfa4f0a8a (patch) | |
tree | 88f5fc59ca92cb0cc696d418e8dff349c265467f /sysutils/deltup/files/patch-Makefile | |
parent | net/isc-dhcp41-server: Fix build with LDAP support (diff) |
Fix problems with missing libs when the linker enforces explicit linking
(ports that are dependencies of other ports)
net-p2p/transmission-cli: add USES=libtool and remove PTHREAD_LIBS
sysutils/deltup: simplify patch by using MAKE_ARGS
x11-fm/rox-filer: convert to USES=shared-mime-info
x11-wm/emerald: remove PTHREAD_LIBS
PR: 192062
Diffstat (limited to '')
-rw-r--r-- | sysutils/deltup/files/patch-Makefile | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/sysutils/deltup/files/patch-Makefile b/sysutils/deltup/files/patch-Makefile index 1f2ce73ec5c5..4c65a1ce768e 100644 --- a/sysutils/deltup/files/patch-Makefile +++ b/sysutils/deltup/files/patch-Makefile @@ -1,17 +1,13 @@ --- Makefile.orig 2005-05-21 04:23:34.000000000 +0400 +++ Makefile 2013-03-16 09:57:42.000000000 +0400 -@@ -1,21 +1,21 @@ - DESTDIR= --PREFIX=/usr -+PREFIX=%%PREFIX%% - BINDIR=$(PREFIX)/bin +@@ -4,13 +4,13 @@ --CC = g++ -+CC ?= g++ + CC = g++ -objfiles=bpatch.o bzip2.o file.o system.o tmpstore.o deltup.o +-libs=-lstdc++ -lz -lbz2 -lssl +objfiles=bpatch.o bzip2.o gzip.o file.o system.o tmpstore.o deltup.o - libs=-lstdc++ -lz -lbz2 -lssl ++libs=-lz -lbz2 -lcrypto #edelta: edelta.cpp deltup # gcc edelta.cpp ${CXXFLAGS} -o edelta @@ -21,9 +17,3 @@ all: deltup - depend: -- gcc -MM *.cpp > .depend -+ ${CC} -MM *.cpp > .depend - - deltup: $(objfiles) - ${CC} $(objfiles) ${CXXFLAGS} -o deltup $(libs) |