[libshumate] meson: Remove unused config file



commit d77af4d471ecd4c77d6f2e64b77efea5e60e39f9
Author: James Westman <james jwestman net>
Date:   Fri Mar 19 16:40:33 2021 -0500

    meson: Remove unused config file
    
    shumate-features.h was used when the memphis renderer was available, but
    that's been removed and the file no longer serves any purpose.

 .gitignore                           |  3 +--
 docs/reference/meson.build           |  1 -
 shumate/meson.build                  | 14 --------------
 shumate/shumate-map-source-factory.h |  1 -
 shumate/shumate.h                    |  1 -
 5 files changed, 1 insertion(+), 19 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f7c04f4..03e5857 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,7 +30,6 @@ shumate/shumate-enum-types.c
 shumate/shumate-enum-types.h
 shumate/stamp-enum-types
 shumate/shumate-version.h
-shumate/shumate-features.h
 compile
 config.guess
 config.h
@@ -98,4 +97,4 @@ m4/ltoptions.m4
 m4/ltsugar.m4
 m4/ltversion.m4
 m4/lt~obsolete.m4
-m4/gtk-doc.m4
\ No newline at end of file
+m4/gtk-doc.m4
diff --git a/docs/reference/meson.build b/docs/reference/meson.build
index 4319efe..b7cdbcf 100644
--- a/docs/reference/meson.build
+++ b/docs/reference/meson.build
@@ -10,7 +10,6 @@ gtk_docpath = join_paths(gtk_prefix, 'share', 'gtk-doc', 'html', 'gtk4')
 libshumate_reference_ignored_h = [
   'shumate-debug.h',
   'shumate-enum-types.h',
-  'shumate-features.h',
   'shumate-marshal.h',
   'shumate.h',
 ]
diff --git a/shumate/meson.build b/shumate/meson.build
index 37db9a0..9a2f60c 100644
--- a/shumate/meson.build
+++ b/shumate/meson.build
@@ -76,18 +76,6 @@ libshumate_c_args = [
   '-DG_LOG_DOMAIN="@0@"'.format(package_name),
 ]
 
-features_h = configuration_data()
-
-libshumate_features_h = configure_file(
-  output: 'shumate-features.h',
-  configuration: features_h,
-  install: true,
-  install_dir: join_paths(
-    pkgincludedir,
-    'shumate',
-  )
-)
-
 version_h = configuration_data()
 version_h.set('SHUMATE_MAJOR_VERSION', version_major)
 version_h.set('SHUMATE_MINOR_VERSION', version_minor)
@@ -106,7 +94,6 @@ libshumate_version_h = configure_file(
 )
 
 libshumate_public_h += [
-  libshumate_features_h,
   libshumate_version_h,
 ]
 
@@ -163,7 +150,6 @@ libshumate_lib = library(
 
 libshumate_dep_sources = [
   libshumate_enums_h,
-  libshumate_features_h,
   libshumate_marshals_h,
   libshumate_version_h,
 ]
diff --git a/shumate/shumate-map-source-factory.h b/shumate/shumate-map-source-factory.h
index 0927ebb..0cc6938 100644
--- a/shumate/shumate-map-source-factory.h
+++ b/shumate/shumate-map-source-factory.h
@@ -25,7 +25,6 @@
 #ifndef SHUMATE_MAP_SOURCE_FACTORY_H
 #define SHUMATE_MAP_SOURCE_FACTORY_H
 
-#include <shumate/shumate-features.h>
 #include <shumate/shumate-map-source.h>
 #include <shumate/shumate-map-source-desc.h>
 
diff --git a/shumate/shumate.h b/shumate/shumate.h
index 78b894f..5867abb 100644
--- a/shumate/shumate.h
+++ b/shumate/shumate.h
@@ -25,7 +25,6 @@
 
 #include <glib.h>
 
-#include "shumate/shumate-features.h"
 #include "shumate/shumate-enum-types.h"
 #include "shumate/shumate-version.h"
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]