summaryrefslogtreecommitdiff
path: root/Makefile-libostree.am
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2016-12-07 21:00:21 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2016-12-08 16:34:06 +0000
commit5155662b57fe5943bba014c3035d87229f55ce54 (patch)
treecdafe2111ce96d0bac4f2db2dace6da2c0503184 /Makefile-libostree.am
parent58e318d678c8bd72b536a187fe2523fc114515d9 (diff)
downloadostree-5155662b57fe5943bba014c3035d87229f55ce54.tar.gz
build: Always do enum scanning now
Since we stopped including the libsoup headers in `ostree-fetcher.h`, we can now unconditionally do enum scanning, and drop a build time conditional. Prep for libcurl porting. Closes: #620 Approved by: jlebon
Diffstat (limited to 'Makefile-libostree.am')
-rw-r--r--Makefile-libostree.am6
1 files changed, 0 insertions, 6 deletions
diff --git a/Makefile-libostree.am b/Makefile-libostree.am
index d6ae6023..a7d7b11b 100644
--- a/Makefile-libostree.am
+++ b/Makefile-libostree.am
@@ -34,10 +34,7 @@ libostreeincludedir = $(includedir)/ostree-1
libostreeinclude_HEADERS = $(libostree_public_headers)
ENUM_TYPES = $(NULL)
-
-if USE_LIBSOUP
ENUM_TYPES += $(srcdir)/src/libostree/ostree-fetcher.h
-endif
src/libostree/ostree-enumtypes.h: src/libostree/ostree-enumtypes.h.template $(ENUM_TYPES)
$(AM_V_GEN) $(GLIB_MKENUMS) \
@@ -50,14 +47,11 @@ src/libostree/ostree-enumtypes.c: src/libostree/ostree-enumtypes.c.template $(EN
--fhead "#include \"ostree-enumtypes.h\"" \
$(ENUM_TYPES) > $@.tmp && mv $@.tmp $@
-if USE_LIBSOUP
ENUM_GENERATED = \
src/libostree/ostree-enumtypes.h \
src/libostree/ostree-enumtypes.c \
$(NULL)
-
BUILT_SOURCES += $(ENUM_GENERATED)
-endif
CLEANFILES += $(BUILT_SOURCES)