summaryrefslogtreecommitdiff
path: root/lib/Makefile.in
diff options
context:
space:
mode:
authorJoe Thornber <ejt@redhat.com>2018-04-30 10:11:23 +0100
committerJoe Thornber <ejt@redhat.com>2018-04-30 10:11:23 +0100
commit2bc896f2a3a0023a4f45f10da3d0a22295a633ee (patch)
tree087c26fa6aa3d6e9e165a83861dc391d4bdc6b9a /lib/Makefile.in
parent545ca594689575fdd58877ad6f66abe1fdab815d (diff)
downloadlvm2-2bc896f2a3a0023a4f45f10da3d0a22295a633ee.tar.gz
build: remove --with-{snapshots,mirrors,raid,thin,cache} options from ./configure
It now behaves as if the were all set as 'internal'
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r--lib/Makefile.in50
1 files changed, 5 insertions, 45 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index bd68edc34..e53262604 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -24,26 +24,6 @@ ifeq ("@POOL@", "shared")
SUBDIRS += format_pool
endif
-ifeq ("@SNAPSHOTS@", "shared")
- SUBDIRS += snapshot
-endif
-
-ifeq ("@MIRRORS@", "shared")
- SUBDIRS += mirror
-endif
-
-ifeq ("@RAID@", "shared")
- SUBDIRS += raid
-endif
-
-ifeq ("@THIN@", "shared")
- SUBDIRS += thin
-endif
-
-ifeq ("@CACHE@", "shared")
- SUBDIRS += cache_segtype
-endif
-
ifeq ("@CLUSTER@", "shared")
SUBDIRS += locking
endif
@@ -51,6 +31,7 @@ endif
SOURCES =\
activate/activate.c \
cache/lvmcache.c \
+ cache_segtype/cache.c \
commands/toolcontext.c \
config/config.c \
datastruct/btree.c \
@@ -108,6 +89,7 @@ SOURCES =\
metadata/snapshot_manip.c \
metadata/thin_manip.c \
metadata/vg.c \
+ mirror/mirrored.c \
misc/crc.c \
misc/lvm-exec.c \
misc/lvm-file.c \
@@ -121,9 +103,12 @@ SOURCES =\
mm/memlock.c \
notify/lvmnotify.c \
properties/prop_common.c \
+ raid/raid.c \
report/properties.c \
report/report.c \
+ snapshot/snapshot.c \
striped/striped.c \
+ thin/thin.c \
uuid/uuid.c \
zero/zero.c
@@ -150,26 +135,6 @@ ifeq ("@CLUSTER@", "internal")
SOURCES += locking/cluster_locking.c
endif
-ifeq ("@SNAPSHOTS@", "internal")
- SOURCES += snapshot/snapshot.c
-endif
-
-ifeq ("@MIRRORS@", "internal")
- SOURCES += mirror/mirrored.c
-endif
-
-ifeq ("@RAID@", "internal")
- SOURCES += raid/raid.c
-endif
-
-ifeq ("@THIN@", "internal")
- SOURCES += thin/thin.c
-endif
-
-ifeq ("@CACHE@", "internal")
- SOURCES += cache_segtype/cache.c
-endif
-
ifeq ("@DEVMAPPER@", "yes")
SOURCES +=\
activate/dev_manager.c \
@@ -204,12 +169,7 @@ ifeq ($(MAKECMDGOALS),distclean)
SUBDIRS =\
format1 \
format_pool \
- snapshot \
- mirror \
notify \
- raid \
- thin \
- cache_segtype \
locking
endif