From: Amos Jeffries Date: Mon, 27 May 2013 13:19:53 +0000 (-0600) Subject: Bug 3854: pt2: link stub_fd with squidclient X-Git-Tag: SQUID_3_4_0_1~104 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b6e92867791613942e55c6bfc65027b35c00e31b;p=thirdparty%2Fsquid.git Bug 3854: pt2: link stub_fd with squidclient AIX and possibly other systems still require fde:: symbols pulled in by ip/libip. Link the stub since the symbols are actually in dead code. --- diff --git a/tools/Makefile.am b/tools/Makefile.am index a22e37b397..4c4339f339 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -34,6 +34,9 @@ test_tools.cc: $(top_srcdir)/test-suite/test_tools.cc stub_debug.cc: $(top_srcdir)/src/tests/stub_debug.cc cp $(top_srcdir)/src/tests/stub_debug.cc . +stub_fd.cc: $(top_srcdir)/src/tests/stub_fd.cc + cp $(top_srcdir)/src/tests/stub_fd.cc . + time.cc: $(top_srcdir)/src/time.cc cp $(top_srcdir)/src/time.cc . @@ -42,7 +45,7 @@ time.cc: $(top_srcdir)/src/time.cc # globals.cc is needed by test_tools.cc. # Neither of these should be disted from here. TESTSOURCES= test_tools.cc -CLEANFILES += test_tools.cc stub_debug.cc time.cc +CLEANFILES += test_tools.cc stub_debug.cc stub_fd.cc time.cc ## ##### helper-mux ##### @@ -58,6 +61,7 @@ bin_PROGRAMS = squidclient squidclient_SOURCES = squidclient.cc \ stub_debug.cc \ + stub_fd.cc \ test_tools.cc \ time.cc