Skip to content

Commit 4e20a6d

Browse files
fxriraveit65
authored andcommitted
EomMetadataDetails: Don't install header file
This is not really useful for plugins. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/5a497db
1 parent 49c5c97 commit 4e20a6d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

‎src/Makefile.am‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,11 @@ libeom_la_SOURCES = \
111111

112112
if HAVE_EXIF
113113
INST_H_FILES += \
114-
eom-metadata-details.h \
115114
eom-exif-util.h
116115

116+
NOINST_H_FILES += \
117+
eom-metadata-details.h
118+
117119
libeom_c_files += \
118120
eom-metadata-details.c \
119121
eom-exif-util.c
@@ -124,7 +126,7 @@ if HAVE_EXEMPI
124126
# is only listed once in INST_H_FILES
125127
# or the build will break with automake-1.11
126128
if !HAVE_EXIF
127-
INST_H_FILES += \
129+
NOINST_H_FILES += \
128130
eom-metadata-details.h
129131
endif !HAVE_EXIF
130132
libeom_la_SOURCES += \

‎src/eom-metadata-details.h‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,19 @@ struct _EomMetadataDetailsClass {
5454
GtkTreeViewClass parent_class;
5555
};
5656

57+
G_GNUC_INTERNAL
5758
GType eom_metadata_details_get_type (void) G_GNUC_CONST;
5859

60+
G_GNUC_INTERNAL
5961
GtkWidget *eom_metadata_details_new (void);
6062

6163
#if HAVE_EXIF
64+
G_GNUC_INTERNAL
6265
void eom_metadata_details_update (EomMetadataDetails *details,
6366
ExifData *data);
6467
#endif
6568
#if HAVE_EXEMPI
69+
G_GNUC_INTERNAL
6670
void eom_metadata_details_xmp_update (EomMetadataDetails *details,
6771
XmpPtr xmp_data);
6872
#endif

0 commit comments

Comments
 (0)