aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-10-09 17:35:01 +0200
committerMax Kellermann <max@duempel.org>2011-10-09 17:35:19 +0200
commit75ad90abc74cf9857c0417cfe8f8417c02dd7215 (patch)
tree32d2dee3a841a940bbeac2aba2b1123fb361ad5d /configure.ac
parent410459318056fd1ddbdf5b03c53e677a66f7c929 (diff)
configure.ac: remove gprof support
gprof is obsolete, it's better to use perfcounters in every aspect.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 0 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac
index 0d969309..50fb9e33 100644
--- a/configure.ac
+++ b/configure.ac
@@ -214,11 +214,6 @@ AC_ARG_ENABLE(gme,
[enable Blargg's game music emulator plugin]),,
enable_gme=auto)
-AC_ARG_ENABLE(gprof,
- AS_HELP_STRING([--enable-gprof],
- [enable profiling via gprof (default: disabled)]),,
- enable_gprof=no)
-
AC_ARG_ENABLE(httpd-output,
AS_HELP_STRING([--enable-httpd-output],
[enables the HTTP server output]),,
@@ -1512,12 +1507,6 @@ then
MPD_CHECK_FLAG([-pedantic])
fi
-dnl ------------------------------ gprof profiler -----------------------------
-if test "x$enable_gprof" = xyes; then
- MPD_CFLAGS="$MPD_CFLAGS -pg"
- MPD_LIBS="$MPD_LIBS -pg"
-fi
-
dnl ---------------------------- warnings as errors ---------------------------
if test "x$enable_werror" = xyes; then
AM_CFLAGS="$AM_CFLAGS -Werror -pedantic-errors"