libnautilus-extension: Remove deprecated headers

Deprecated since commit 7e2605c681
This commit is contained in:
António Fernandes 2022-07-09 17:48:05 +01:00 committed by António Fernandes
parent 801e877d6e
commit 9c56883cbd
3 changed files with 0 additions and 70 deletions

View file

@ -1,10 +1,5 @@
nautilus_extension_version = '2.0.0'
libnautilus_extension_deprecated_headers = [
'nautilus-extension-types.h',
'nautilus-menu-item.h'
]
libnautilus_extension_headers = [
'nautilus-column-provider.h',
'nautilus-column.h',
@ -23,7 +18,6 @@ install_headers(
)
install_headers(
libnautilus_extension_headers,
libnautilus_extension_deprecated_headers,
subdir: join_paths('nautilus', 'libnautilus-extension')
)
@ -61,7 +55,6 @@ libnautilus_extension_deps = [
libnautilus_extension = shared_library(
'nautilus-extension', [
libnautilus_extension_deprecated_headers,
libnautilus_extension_sources,
],
c_args: [

View file

@ -1,33 +0,0 @@
/* nautilus-info-provider.h - Type definitions for Nautilus extensions
*
* Copyright (C) 2003 Novell, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*
* Author: Dave Camp <dave@ximian.com>
*
*/
/* This interface is implemented by Nautilus extensions that want to
* provide information about files. Extensions are called when Nautilus
* needs information about a file. They are passed a NautilusFileInfo
* object which should be filled with relevant information */
#pragma once
#if !defined (NAUTILUS_EXTENSION_H) && !defined (NAUTILUS_COMPILATION)
#warning "This header is deprecated, include <nautilus-extension.h> instead."
#endif
#include <nautilus-extension.h>

View file

@ -1,30 +0,0 @@
/*
* nautilus-menu-item.h - Menu items exported by NautilusMenuProvider
* objects.
*
* Copyright (C) 2003 Novell, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*
* Author: Dave Camp <dave@ximian.com>
*
*/
#pragma once
#if !defined (NAUTILUS_EXTENSION_H) && !defined (NAUTILUS_COMPILATION)
#warning "Only <nautilus-extension.h> should be included directly."
#endif
#include "nautilus-menu.h"