svn commit: r361138 - in head/www/fcgi: . files
Matthias Andree
mandree at FreeBSD.org
Mon Jul 7 22:32:03 UTC 2014
Author: mandree
Date: Mon Jul 7 22:32:02 2014
New Revision: 361138
URL: http://svnweb.freebsd.org/changeset/ports/361138
QAT: https://qat.redports.org/buildarchive/r361138/
Log:
Fix up recent commit [1]:
- Fix linking on systems that require listing all DSOs explicitly,
to allow build on 10.0+ - this adds
fcgi/files/patch-examples__Makefile.in - upstream should adjust
his examples/Makefile.am accordingly.
- Use ${RM} -f to avoid rm query if building as unprivileged user.
PR: 191664 [1]
Added:
head/www/fcgi/files/patch-examples__Makefile.in (contents, props changed)
Modified:
head/www/fcgi/Makefile
Modified: head/www/fcgi/Makefile
==============================================================================
--- head/www/fcgi/Makefile Mon Jul 7 22:30:44 2014 (r361137)
+++ head/www/fcgi/Makefile Mon Jul 7 22:32:02 2014 (r361138)
@@ -3,7 +3,7 @@
PORTNAME= fcgi
PORTVERSION= 2.4.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://www.fastcgi.com/dist/ \
http://www.skysmurf.nl/comp/FreeBSD/distfiles/
@@ -33,7 +33,7 @@ post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
- @${RM} ${STAGEDIR}${DOCSDIR}/*.[13]
+ @${RM} -f ${STAGEDIR}${DOCSDIR}/*.[13]
.endif
.include <bsd.port.mk>
Added: head/www/fcgi/files/patch-examples__Makefile.in
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/fcgi/files/patch-examples__Makefile.in Mon Jul 7 22:32:02 2014 (r361138)
@@ -0,0 +1,11 @@
+--- ./examples/Makefile.in.orig 2003-01-19 18:21:17.000000000 +0100
++++ ./examples/Makefile.in 2014-07-08 00:25:16.000000000 +0200
+@@ -125,7 +125,7 @@
+ threaded_LDFLAGS = @PTHREAD_CFLAGS@ @PTHREAD_LIBS@
+
+ echo_cpp_SOURCES = $(INCLUDE_FILES) $(INCLUDEDIR)/fcgio.h echo-cpp.cpp
+-echo_cpp_LDADD = $(LIBDIR)/libfcgi++.la
++echo_cpp_LDADD = $(LIBDIR)/libfcgi++.la $(LIBFCGI)
+ subdir = examples
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/fcgi_config.h
More information about the svn-ports-all
mailing list