From cc8b006a8e6ef2ffca6295b54763161a9d4640c1 Mon Sep 17 00:00:00 2001 From: Nils Maier Date: Tue, 30 Apr 2013 21:55:13 +0200 Subject: [PATCH] mallocs: Remove bogus pkg-config _LDFLAGS lines --- configure.ac | 2 -- 1 file changed, 2 deletions(-) diff --git a/configure.ac b/configure.ac index 870fd3e1..882a7d63 100644 --- a/configure.ac +++ b/configure.ac @@ -541,7 +541,6 @@ if test "x$with_tcmalloc" = "xyes"; then PKG_CHECK_MODULES([TCMALLOC], [libtcmalloc_minimal], [have_tcmalloc=yes], [have_tcmalloc=no]) if test "x$have_tcmalloc" = "xyes"; then CPPFLAGS="$TCMALLOC_CFLAGS $CPPFLAGS" - LDFLAGS="$TCMALLOC_LDFLAGS $CPPFLAGS" LIBS="$LIBS $TCMALLOC_LIBS" else AC_CHECK_LIB([tcmalloc_minimal], [malloc], [have_tcmalloc=yes], [have_tcmalloc=no]) @@ -562,7 +561,6 @@ if test "x$have_tcmalloc" != "xyes" && test "x$with_jemalloc" = "xyes"; then PKG_CHECK_MODULES([JEMALLOC], [jemalloc], [have_jemalloc=yes], [have_jemalloc=no]) if test "x$have_jemalloc" = "xyes"; then CPPFLAGS="$JEMALLOC_CFLAGS $CPPFLAGS" - LDFLAGS="$JEMALLOC_LDFLAGS $CPPFLAGS" LIBS="$LIBS $JEMALLOC_LIBS" else AC_CHECK_LIB([jemalloc], [malloc], [have_jemalloc=yes], [have_jemalloc=no])