summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor V. Kovalenko <igor.v.kovalenko@gmail.com>2020-12-21 19:55:00 +0300
committerArun Raghavan <arun@asymptotic.io>2021-01-12 21:03:17 -0500
commite68aa03f292a0e0bda00f15a85e4928d8fafbe56 (patch)
tree87b5a6d79b5e3d1ab8f6a01a784ddb076f0f6516
parentc6b7837df361f5d3010b4cc8cab2edda9098819b (diff)
downloadpulseaudio-e68aa03f292a0e0bda00f15a85e4928d8fafbe56.tar.gz
database: clean up remaining references to CANONICAL_HOST
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/425>
-rw-r--r--configure.ac3
-rw-r--r--meson.build1
-rw-r--r--src/daemon/main.c1
3 files changed, 0 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index a95e4616e..680989708 100644
--- a/configure.ac
+++ b/configure.ac
@@ -56,9 +56,6 @@ AC_SUBST(LIBPULSE_SIMPLE_VERSION_INFO, [1:1:1])
# info x:y:z always will hold x=z
AC_SUBST(LIBPULSE_MAINLOOP_GLIB_VERSION_INFO, [0:6:0])
-AC_CANONICAL_HOST
-AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host_cpu", [Canonical host system architecture string.])
-
AC_CHECK_PROG([STOW], [stow], [yes], [no])
AS_IF([test "x$STOW" = "xyes" && test -d /usr/local/stow], [
diff --git a/meson.build b/meson.build
index d0962fb30..a5263215c 100644
--- a/meson.build
+++ b/meson.build
@@ -125,7 +125,6 @@ cdata = configuration_data()
cdata.set_quoted('PACKAGE', 'pulseaudio')
cdata.set_quoted('PACKAGE_NAME', 'pulseaudio')
cdata.set_quoted('PACKAGE_VERSION', pa_version_str)
-cdata.set_quoted('CANONICAL_HOST', target_machine.cpu_family())
cdata.set('PA_MAJOR', pa_version_major)
cdata.set('PA_MINOR', pa_version_minor)
cdata.set('PA_API_VERSION', pa_api_version)
diff --git a/src/daemon/main.c b/src/daemon/main.c
index 59f931219..30ef49964 100644
--- a/src/daemon/main.c
+++ b/src/daemon/main.c
@@ -916,7 +916,6 @@ int main(int argc, char *argv[]) {
pa_set_env_and_record("PULSE_SYSTEM", conf->system_instance ? "1" : "0");
pa_log_info("This is PulseAudio %s", PACKAGE_VERSION);
- pa_log_debug("Compilation host: %s", CANONICAL_HOST);
pa_log_debug("Compilation CFLAGS: %s", PA_CFLAGS);
#ifdef HAVE_LIBSAMPLERATE