mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
99fffb966b
- 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]
12 lines
490 B
Plaintext
12 lines
490 B
Plaintext
--- ./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
|