diff options
author | Bastian Germann <bastiangermann@fishpost.de> | 2020-09-26 21:32:55 +0200 |
---|---|---|
committer | Zdenek Kabelac <zkabelac@redhat.com> | 2020-09-29 10:13:24 +0200 |
commit | 168e2ffbcd8c8cf20711be36059bfcf999a95012 (patch) | |
tree | 11e8f505fc18344e1a2e45d2534c5164cb73a841 /make.tmpl.in | |
parent | fb96e9ab217641ec3a967d9aa2be01fc936ee038 (diff) | |
download | lvm2-168e2ffbcd8c8cf20711be36059bfcf999a95012.tar.gz |
lvm: add readline alternative editline
LVM2 is distributed under GPLv2 only. The readline library changed its
license long ago to GPLv3. Given that those licenses are incompatible
and you follow the FSF in their interpretation that dynamically linking
creates a derivative work, distributing LVM2 linked against a current
readline version might be legally problematic.
Add support for the BSD licensed editline library as an alternative for
readline.
Link: https://thrysoee.dk/editline
Diffstat (limited to 'make.tmpl.in')
-rw-r--r-- | make.tmpl.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/make.tmpl.in b/make.tmpl.in index 8a2081897..4549746ab 100644 --- a/make.tmpl.in +++ b/make.tmpl.in @@ -77,6 +77,7 @@ RT_LIBS = @RT_LIBS@ M_LIBS = @M_LIBS@ PTHREAD_LIBS = @PTHREAD_LIBS@ READLINE_LIBS = @READLINE_LIBS@ +EDITLINE_LIBS = @EDITLINE_LIBS@ SELINUX_LIBS = @SELINUX_LIBS@ UDEV_CFLAGS = @UDEV_CFLAGS@ UDEV_LIBS = @UDEV_LIBS@ |