Skip to content

Commit

Permalink
EomMetadataDetails: Don't install header file
Browse files Browse the repository at this point in the history
This is not really useful for plugins.

origin commit:
https://gitlab.gnome.org/GNOME/eog/commit/5a497db
  • Loading branch information
fxri authored and raveit65 committed Jul 25, 2018
1 parent 49c5c97 commit 4e20a6d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Makefile.am
Expand Up @@ -111,9 +111,11 @@ libeom_la_SOURCES = \

if HAVE_EXIF
INST_H_FILES += \
eom-metadata-details.h \
eom-exif-util.h

NOINST_H_FILES += \
eom-metadata-details.h

libeom_c_files += \
eom-metadata-details.c \
eom-exif-util.c
Expand All @@ -124,7 +126,7 @@ if HAVE_EXEMPI
# is only listed once in INST_H_FILES
# or the build will break with automake-1.11
if !HAVE_EXIF
INST_H_FILES += \
NOINST_H_FILES += \
eom-metadata-details.h
endif !HAVE_EXIF
libeom_la_SOURCES += \
Expand Down
4 changes: 4 additions & 0 deletions src/eom-metadata-details.h
Expand Up @@ -54,15 +54,19 @@ struct _EomMetadataDetailsClass {
GtkTreeViewClass parent_class;
};

G_GNUC_INTERNAL
GType eom_metadata_details_get_type (void) G_GNUC_CONST;

G_GNUC_INTERNAL
GtkWidget *eom_metadata_details_new (void);

#if HAVE_EXIF
G_GNUC_INTERNAL
void eom_metadata_details_update (EomMetadataDetails *details,
ExifData *data);
#endif
#if HAVE_EXEMPI
G_GNUC_INTERNAL
void eom_metadata_details_xmp_update (EomMetadataDetails *details,
XmpPtr xmp_data);
#endif
Expand Down

0 comments on commit 4e20a6d

Please sign in to comment.