This change was okayed on jabber by Thomas. The issue
occurred when static linking was enabled on OSX.
Linking a static lib from statically linked lib causes
various issues and isn't generally considered a good
idea.
AM_CXXFLAGS = $(KEA_CXXFLAGS)
-if USE_STATIC_LINK
-AM_LDFLAGS = -static
-endif
-
CLEANFILES = *.gcno *.gcda
if HAVE_GTEST
if HAVE_MYSQL
libdhcpsrvtest_la_CPPFLAGS += $(MYSQL_CPPFLAGS)
endif
-libdhcpsrvtest_la_LDFLAGS = $(AM_LDFLAGS) $(GTEST_LDFLAGS)
+libdhcpsrvtest_la_LDFLAGS = $(AM_LDFLAGS)
if HAVE_MYSQL
libdhcpsrvtest_la_LDFLAGS += $(MYSQL_LIBS)
endif