From 120e570da7baba496c03a169fa9e04cfc0e57896 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 4 Jun 2019 17:54:59 +0200 Subject: [PATCH] archive/Domain: remove unused library --- src/archive/ArchiveDomain.cxx | 23 ----------------------- src/archive/ArchiveDomain.hxx | 25 ------------------------- src/archive/meson.build | 1 - 3 files changed, 49 deletions(-) delete mode 100644 src/archive/ArchiveDomain.cxx delete mode 100644 src/archive/ArchiveDomain.hxx diff --git a/src/archive/ArchiveDomain.cxx b/src/archive/ArchiveDomain.cxx deleted file mode 100644 index ba97a0ae6..000000000 --- a/src/archive/ArchiveDomain.cxx +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright 2003-2018 The Music Player Daemon Project - * http://www.musicpd.org - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - -#include "ArchiveDomain.hxx" -#include "util/Domain.hxx" - -const Domain archive_domain("archive"); diff --git a/src/archive/ArchiveDomain.hxx b/src/archive/ArchiveDomain.hxx deleted file mode 100644 index ed9786092..000000000 --- a/src/archive/ArchiveDomain.hxx +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright 2003-2018 The Music Player Daemon Project - * http://www.musicpd.org - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - -#ifndef MPD_ARCHIVE_DOMAIN_HXX -#define MPD_ARCHIVE_DOMAIN_HXX - -extern const class Domain archive_domain; - -#endif diff --git a/src/archive/meson.build b/src/archive/meson.build index f5034a106..e2f45f8e6 100644 --- a/src/archive/meson.build +++ b/src/archive/meson.build @@ -1,6 +1,5 @@ archive_api = static_library( 'archive_api', - 'ArchiveDomain.cxx', 'ArchiveList.cxx', include_directories: inc, )