gansm / finalcut

A text-based widget toolkit
https://github.com/gansm/finalcut/wiki/First-steps#first-steps-with-the-final-cut-widget-toolkit
GNU Lesser General Public License v3.0
983 stars 52 forks source link

Cygwin conflicts with ACLOCAL_AMFLAGS #54

Closed abreu20011 closed 4 years ago

abreu20011 commented 4 years ago

Hi! trying to generate Makefiles with Cywing, after use "autoreconf --install --force" I get the error:

error: AC_CONFIG_MACRO_DIRS([m4]) conflicts with ACLOCAL_AMFLAGS=-. m4

gansm commented 4 years ago

This looks to me like not all build dependencies have been installed.

You must have the packages

installed. Make sure that the program versions are not mixed.

After that your output should look like this:

$ autoreconf --install --force
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
configure.ac:11: installing './compile'
configure.ac:60: installing './config.guess'
configure.ac:60: installing './config.sub'
configure.ac:12: installing './install-sh'
configure.ac:12: installing './missing'
examples/Makefile.am: installing './depcomp'
parallel-tests: installing './test-driver'

But you should check out the latest version (4a8b863), because there was a problem with Cygwin in class FString, which I have fixed now.

Aylexx commented 4 years ago

Same error

gansm commented 4 years ago

Is your Cygwin up to date?

Since I don't know your Cygwin installation, I can't say what is missing. Can you please give me the complete output of the following commands from your computer?

$ autoconf --version
$ automake --version
$ libtool --version
$ uname -s
CYGWIN_NT-10.0
$ uname -r
3.1.4(0.340/5/3)
$ uname -m
x86_64
$ git clone git://github.com/gansm/finalcut.git
Klone nach 'finalcut' ...
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 14245 (delta 0), reused 1 (delta 0), pack-reused 14241
Empfange Objekte: 100% (14245/14245), 13.37 MiB | 3.00 MiB/s, Fertig.
Löse Unterschiede auf: 100% (12352/12352), Fertig.
$ cd finalcut/
$ autoreconf --install --force
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
[…]
$ ./configure --prefix=/usr
[…]
$ make
[…]
abreu20011 commented 4 years ago

I tried in 4a8b863 but the same problem. Also checked my dependencies and I have instaled:

Here's my outputs:

$ autoconf --version
autoconf (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David J. MacKenzie and Akim Demaille.
$ automake --version
automake (GNU automake) 1.16.1
Copyright (C) 2018 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <https://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Tom Tromey <tromey@redhat.com>
       and Alexandre Duret-Lutz <adl@gnu.org>.
$ libtool --version
libtool (GNU libtool) 2.4.6
Written by Gordon Matzigkeit, 1996

Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ uname -s
CYGWIN_NT-10.0
$ uname -m
x86_64
$ autoreconf --install --force
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize:   error: AC_CONFIG_MACRO_DIRS([m4]) conflicts with ACLOCAL_AMFLAGS=-. m4
autoreconf-2.69: libtoolize failed with exit status: 1
gansm commented 4 years ago

What is your Cygwin version?

$ uname -r

What do you get when you enter:

$ grep AC_PREREQ /usr/share/aclocal/ax_check_compile_flag.m4

?

Please, try:

autoreconf --force --install --verbose --warnings=all

If this does not work, please try the following sequence of commands:

$ aclocal
$ autoconf
$ autoheader
$ libtoolize --copy
$ automake --add-missing --copy
abreu20011 commented 4 years ago
$ uname -r
3.1.4(0.340/5/3)
$ grep AC_PREREQ /usr/share/aclocal/ax_check_compile_flag.m4
[AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF
$ autoreconf --force --install --verbose --warnings=all
autoreconf-2.69: Entering directory `.'
autoreconf-2.69: configure.ac: not using Gettext
autoreconf-2.69: running: aclocal --force --warnings=all -I m4
autoreconf-2.69: configure.ac: tracing
autoreconf-2.69: running: libtoolize --copy --force
libtoolize: putting auxiliary files in '.'.
libtoolize: copying file './ltmain.sh'
libtoolize:   error: AC_CONFIG_MACRO_DIRS([m4]) conflicts with ACLOCAL_AMFLAGS=-. m4
autoreconf-2.69: libtoolize failed with exit status: 1
abreu20011 commented 4 years ago

When I do "libtoolize --copy":

$ libtoolize --copy libtoolize: error: AC_CONFIG_MACRO_DIRS([m4]) conflicts with ACLOCAL_AMFLAGS=-. m4

gansm commented 4 years ago

You still haven't told me what

$ uname -r

and

$ grep AC_PREREQ /usr/share/aclocal/ax_check_compile_flag.m4

are showing you?

Do you have third-party m4 macros in use?

Someone on Stack Overflow has the same problem: https://stackoverflow.com/questions/47582762/ac-config-macro-dirsbuild-aux-m4-conflicts-with-aclocal-amflags-i-build-aux

abreu20011 commented 4 years ago

Hi, I wrote the two commands two post before: https://github.com/gansm/finalcut/issues/54#issuecomment-623123847

gansm commented 4 years ago

I'm sorry, I didn't see that post. We both use the same versions. I assume that you have not yet installed a required package. Please can you give me the complete output of cygcheck -c -d?

abreu20011 commented 4 years ago
$ cygcheck -c -d
Cygwin Package Information
Package                      Version
_autorebase                  001007-1
alternatives                 1.3.30c-10
autoconf                     13-1
autoconf-archive             2019.01.06-1
autoconf2.1                  2.13-12
autoconf2.5                  2.69-4
automake                     11-1
automake1.10                 1.10.3-3
automake1.11                 1.11.6-3
automake1.12                 1.12.6-3
automake1.13                 1.13.4-2
automake1.14                 1.14.1-3
automake1.15                 1.15.1-2
automake1.16                 1.16.1-1
automake1.9                  1.9.6-11
base-cygwin                  3.8-1
base-files                   4.3-2
bash                         4.4.12-3
bc                           1.06.95-2
binutils                     2.34+1git.de9c1b7cfe-1
bison                        3.0.4-1
bzip2                        1.0.8-1
ca-certificates              2.40-1
coreutils                    8.26-2
crypto-policies              20190218-1
cygutils                     1.4.16-2
cygwin                       3.1.4-1
cygwin-devel                 3.1.4-1
dash                         0.5.9.1-1
diffutils                    3.5-2
editrights                   1.03-1
file                         5.32-1
findutils                    4.6.0-1
flex                         2.6.4-2
gawk                         5.1.0-1
gcc-core                     9.3.0-2
gcc-g++                      9.3.0-2
getent                       2.18.90-4
gettext                      0.19.8.1-2
grep                         3.0-2
groff                        1.22.4-1
gzip                         1.8-1
hostname                     3.13-1
info                         6.7-1
ipc-utils                    1.0-2
less                         551-1
libargp                      20110921-3
libatomic1                   9.3.0-2
libattr1                     2.4.48-2
libblkid1                    2.33.1-2
libboost-devel               1.66.0-1
libboost_atomic1.66          1.66.0-1
libboost_chrono1.66          1.66.0-1
libboost_container1.66       1.66.0-1
libboost_context1.66         1.66.0-1
libboost_coroutine1.66       1.66.0-1
libboost_date_time1.66       1.66.0-1
libboost_filesystem1.66      1.66.0-1
libboost_graph1.66           1.66.0-1
libboost_iostreams1.66       1.66.0-1
libboost_locale1.66          1.66.0-1
libboost_log1.66             1.66.0-1
libboost_math1.66            1.66.0-1
libboost_program_options1.66 1.66.0-1
libboost_random1.66          1.66.0-1
libboost_regex1.66           1.66.0-1
libboost_serialization1.66   1.66.0-1
libboost_signals1.66         1.66.0-1
libboost_stacktrace1.66      1.66.0-1
libboost_system1.66          1.66.0-1
libboost_test1.66            1.66.0-1
libboost_thread1.66          1.66.0-1
libboost_timer1.66           1.66.0-1
libboost_type_erasure1.66    1.66.0-1
libboost_wave1.66            1.66.0-1
libbz2_1                     1.0.8-1
libcrypt2                    4.4.4-1
libdb5.3                     5.3.28-2
libfdisk1                    2.33.1-2
libffi6                      3.2.1-2
libgc1                       8.0.4-1
libgcc1                      9.3.0-2
libgdbm4                     1.13-1
libgdbm6                     1.18.1-1
libgdbm_compat4              1.18.1-1
libgmp10                     6.2.0-2
libgnutls30                  3.6.9-1
libgomp1                     9.3.0-2
libguile2.2_1                2.2.7-1
libhogweed4                  3.4.1-1
libiconv                     1.14-3
libiconv2                    1.14-3
libicu-devel                 65.1-1
libicu61                     61.1-1
libicu65                     65.1-1
libidn2_0                    2.2.0-1
libintl-devel                0.19.8.1-2
libintl8                     0.19.8.1-2
libisl22                     0.22.1-2
libltdl7                     2.4.6-7
liblzma5                     5.2.4-1
libmpc3                      1.1.0-1
libmpfr6                     4.0.2-2p6
libncursesw10                6.1-1.20190727
libnettle6                   3.4.1-1
libp11-kit0                  0.23.20-1
libpcre1                     8.44-1
libpipeline1                 1.5.1-1
libpkgconf3                  1.6.3-1
libpopt-common               1.16-2
libpopt0                     1.16-2
libpsl5                      0.21.0-1
libquadmath0                 9.3.0-2
libreadline7                 7.0.3-3
libsigsegv2                  2.10-2
libsmartcols1                2.33.1-2
libssl1.1                    1.1.1f-1
libstdc++6                   9.3.0-2
libtasn1_6                   4.14-1
libtool                      2.4.6-7
libunistring2                0.9.10-1
libuuid1                     2.33.1-2
login                        1.13-1
m4                           1.4.18-1
make                         4.3-1
man-db                       2.7.6.1-1
mintty                       3.1.4-1
ncurses                      6.1-1.20190727
openssl                      1.1.1f-1
p11-kit                      0.23.20-1
p11-kit-trust                0.23.20-1
perl                         5.30.2-1
perl-Test-Harness            3.42-2
perl-Unicode-Normalize       1.26-2
perl_autorebase              5.30.2-1
perl_base                    5.30.2-1
pkg-config                   1.6.3-1
pkgconf                      1.6.3-1
publicsuffix-list-dafsa      20200326-1
rebase                       4.4.4-1
run                          1.3.4-2
sed                          4.4-1
tar                          1.29-1
terminfo                     6.1-1.20190727
terminfo-extra               6.1-1.20190727
texinfo                      6.7-1
tzcode                       2019c-1
tzdata                       2019c-1
unzip                        6.0-17
util-linux                   2.33.1-2
vim-minimal                  8.2.0486-1
w32api-headers               7.0.0-1
w32api-runtime               7.0.0-1
wget                         1.19.1-2
which                        2.20-2
windows-default-manifest     6.4-1
xz                           5.2.4-1
zlib0                        1.2.11-1
gansm commented 4 years ago

I have now created a diff:

--------------------------------------------------------------+-------------------------------------------------------------
                    My side                                   |                           Your side.
--------------------------------------------------------------+-------------------------------------------------------------
Cygwin Package Information                                      Cygwin Package Information
Package                                 Version                 Package                                 Version
_autorebase                             001007-1                _autorebase                             001007-1
_update-info-dir                        03000-1               <
a2ps                                    4.14-3                <
aalib                                   1.4rc5-12             <
adwaita-icon-theme                      3.26.1-1              <
adwaita-themes                          3.22.3-1              <
alternatives                            1.3.30c-10              alternatives                            1.3.30c-10
antiword                                0.37-1                <
arc                                     5.21q-1               <
arj                                     3.10.22-3             <
ascii                                   3.15-1                <
aspell                                  0.60.8-1              <
aspell-de                               20161207.7.0-1        <
at-spi2-core                            2.26.2-1              <
atool                                   0.39.0-1              <
attr                                    2.4.48-2              <
autobuild                               5.3-1                 <
autoconf                                13-1                    autoconf                                13-1
autoconf-archive                        2019.01.06-1            autoconf-archive                        2019.01.06-1
autoconf2.1                             2.13-12                 autoconf2.1                             2.13-12
autoconf2.5                             2.69-4                  autoconf2.5                             2.69-4
automake                                11-1                    automake                                11-1
automake1.10                            1.10.3-3                automake1.10                            1.10.3-3
automake1.11                            1.11.6-3                automake1.11                            1.11.6-3
automake1.12                            1.12.6-3                automake1.12                            1.12.6-3
automake1.13                            1.13.4-2                automake1.13                            1.13.4-2
automake1.14                            1.14.1-3                automake1.14                            1.14.1-3
automake1.15                            1.15.1-2                automake1.15                            1.15.1-2
automake1.16                            1.16.1-1                automake1.16                            1.16.1-1
automake1.4                             1.4p6-11              <
automake1.5                             1.5-11                <
automake1.6                             1.6.3-12              <
automake1.7                             1.7.9-11              <
automake1.8                             1.8.5-11              <
automake1.9                             1.9.6-11                automake1.9                             1.9.6-11
base-cygwin                             3.8-1                   base-cygwin                             3.8-1
base-files                              4.3-2                   base-files                              4.3-2
bash                                    4.4.12-3                bash                                    4.4.12-3
bash-completion                         2.7-1                 <
bc                                      1.06.95-2               bc                                      1.06.95-2
binutils                                2.34+1git.de9c1b7cfe-   binutils                                2.34+1git.de9c1b7cfe-
bison                                   3.0.4-1                 bison                                   3.0.4-1
bitstream-vera-fonts                    1.10-2                <
bmp2png                                 1.62-3                <
build-docbook-catalog                   1.5-2                 <
bvi                                     1.3.2-3               <
bzip2                                   1.0.8-1                 bzip2                                   1.0.8-1
ca-certificates                         2.40-1                  ca-certificates                         2.40-1
cantarell-fonts                         0.0.25-1              <
ccrypt                                  1.11-1                <
chere                                   1.4-1                 <
chkconfig                               1.3.30a-2             <
compface                                1.5.2-1               <
convmv                                  1.12-1                <
coreutils                               8.26-2                  coreutils                               8.26-2
cpio                                    2.11-3                <
cppcheck                                1.84-1                <
cppunit                                 1.13.2-1              <
cron                                    4.1-65                <
crypt                                   2.1-1                 <
crypto-policies                         20190218-1              crypto-policies                         20190218-1
csih                                    0.9.11-1              <
ctags                                   5.8-1                 <
ctorrent                                1.3.4-dnh3.2-2        <
curl                                    7.66.0-1              <
cygrunsrv                               1.62-1                <
cygutils                                1.4.16-2                cygutils                                1.4.16-2
cygutils-extra                          1.4.16-2              <
cygwin                                  3.1.4-1                 cygwin                                  3.1.4-1
cygwin-devel                            3.1.4-1                 cygwin-devel                            3.1.4-1
cygwin-doc                              3.1.4-1               <
cygwin-x-doc                            20180629-1            <
dash                                    0.5.9.1-1               dash                                    0.5.9.1-1
dbus                                    1.10.22-1             <
dbus-x11                                1.10.22-1             <
dconf                                   0.26.1-1              <
dconf-editor                            3.26.2-1              <
dconf-service                           0.26.1-1              <
ddd                                     3.3.12-3              <
ddrescue                                1.25-1                <
dejavu-fonts                            2.37-1                <
desktop-file-utils                      0.23-1                <
dialog                                  1.3-3.20170131        <
diffutils                               3.5-2                   diffutils                               3.5-2
docbook-xml412                          4.1.2-2               <
docbook-xml42                           4.2-4                 <
docbook-xml43                           4.3-2                 <
docbook-xml44                           4.4-2                 <
docbook-xml45                           4.5-1                 <
docbook-xsl                             1.77.1-1              <
dos2unix                                7.4.1-1               <
dri-drivers                             19.1.6-1              <
ed                                      1.16-1                <
editres                                 1.0.7-1               <
editrights                              1.03-1                  editrights                              1.03-1
emacs                                   26.3-2                <
emacs-common                            26.3-2                <
emacs-X11                               26.3-2                <
email                                   3.2.3-git-2           <
epstool                                 3.08-2                <
evince                                  3.26.0-1              <
exif                                    0.6.21-1              <
fbpanel                                 7.0-1                 <
fdupes                                  1.50-PR2-3            <
fetchmail                               6.4.3-1               <
file                                    5.32-1                  file                                    5.32-1
file-roller                             3.26.2-1              <
findutils                               4.6.0-1                 findutils                               4.6.0-1
fish                                    3.1.0-1               <
flex                                    2.6.4-2                 flex                                    2.6.4-2
flip                                    1.19-1                <
font-bitstream-speedo                   1.0.1-1               <
font-bitstream-vera-ttf                 1.10-2                <
font-cantarell-otf                      0.0.25-1              <
font-util                               1.3.2-1               <
fontconfig                              2.13.1-1              <
galculator                              2.1.4-1               <
gamin                                   0.1.10-15             <
gawk                                    5.1.0-1                 gawk                                    5.1.0-1
gcc-core                                9.3.0-2                 gcc-core                                9.3.0-2
gcc-g++                                 9.3.0-2                 gcc-g++                                 9.3.0-2
gcc-objc                                9.3.0-2               <
gcc-objc++                              9.3.0-2               <
gconf-desktop-schemas                   2.32.1-3              <
GConf2                                  3.2.6-2               <
gcr                                     3.20.0-1              <
gd                                      2.2.5-2               <
gdb                                     8.2.1-1               <
gdk-pixbuf2.0-svg                       2.40.20-1             <
geany                                   1.31-1                <
geany-plugins-common                    1.31-1                <
geany-plugins-git-changebar             1.31-1                <
gedit                                   3.22.1-1              <
gedit-plugins                           3.22.0-1              <
genisoimage                             1.1.11-1              <
getent                                  2.18.90-4               getent                                  2.18.90-4
getmail                                 5.1-1                 <
gettext                                 0.19.8.1-2              gettext                                 0.19.8.1-2
gettext-devel                           0.19.8.1-2            <
ghostscript                             9.27-2                <
ghostscript-fonts-other                 6.0-1                 <
giflib                                  5.1.4-1               <
girepository-Atk1.0                     2.26.1-1              <
girepository-cairo1.0                   1.54.1-1              <
girepository-GDesktopEnums3.0           3.24.1-1              <
girepository-GdkPixbuf2.0               2.36.11-1             <
girepository-Ggit1.0                    0.26.2-1              <
girepository-GIRepository2.0            1.54.1-1              <
girepository-GLib2.0                    1.54.1-1              <
girepository-GnomeDesktop3.0            3.26.2-1              <
girepository-Gtk3.0                     3.22.28-1             <
girepository-GtkSource3.0               3.24.6-1              <
girepository-Gucharmap2.90              10.0.3-1              <
girepository-HarfBuzz0.0                2.5.3-1               <
girepository-Notify0.7                  0.7.7-1               <
girepository-Pango1.0                   1.40.14-1             <
girepository-Peas1.0                    1.22.0-1              <
girepository-Soup2.4                    2.60.3-1              <
girepository-SoupGNOME2.4               2.60.3-1              <
girepository-Vte2.91                    0.50.2-1              <
girepository-x11                        1.54.1-1              <
git                                     2.21.0-1              <
glib2.0-networking                      2.54.1-1              <
gnome-backgrounds                       3.26.2-1              <
gnome-control-center                    3.26.2-1              <
gnome-desktop                           3.26.2-1              <
gnome-doc-utils                         0.20.10-2             <
gnome-epub-thumbnailer                  1.5-1                 <
gnome-font-viewer                       3.26.0-1              <
gnome-icon-theme                        3.10.0-1              <
gnome-keyring                           3.20.1-1              <
gnome-menus                             3.13.3-3              <
gnome-online-accounts                   3.22.6-2              <
gnome-session                           3.26.1-1              <
gnome-settings-daemon                   3.26.2-1              <
gnome-ssh-askpass                       7.4-1                 <
gnome-system-log                        3.9.90-1              <
gnome-system-monitor                    3.24.0-1              <
gnome-terminal                          3.26.2-1              <
gnome-themes-standard                   3.22.3-1              <
gnome-tweak-tool                        3.26.4-1              <
gnupg                                   1.4.23-1              <
gnuplot                                 5.2.8-1               <
gq                                      1.3.4-3               <
GraphicsMagick                          1.3.35-1              <
grep                                    3.0-2                   grep                                    3.0-2
grepmail                                5.3033-3              <
groff                                   1.22.4-1                groff                                   1.22.4-1
gsettings-desktop-schemas               3.24.1-1              <
gtk-update-icon-cache                   3.22.28-1             <
gtk2.0-engines                          2.20.2-1              <
gtk2.0-engines-pixmap                   2.24.32-1             <
gtk3-canberra-module                    0.30-2                <
gv                                      3.7.4-1               <
gvfs                                    1.34.2-1              <
gvim                                    8.2.0486-1            <
gzip                                    1.8-1                   gzip                                    1.8-1
hexedit                                 1.2.13-2              <
hicolor-icon-theme                      0.15-1                <
hostname                                3.13-1                  hostname                                3.13-1
html2ps                                 1.0b7-2               <
httperf                                 0.9.0-1               <
httptunnel                              3.3-1                 <
iceauth                                 1.0.8-1               <
ico                                     1.0.5-1               <
ImageMagick                             6.9.10.11-2           <
imlib2                                  1.4.10-1              <
inetutils-server                        1.9.4-1               <
info                                    6.7-1                   info                                    6.7-1
ipc-utils                               1.0-2                   ipc-utils                               1.0-2
iso-codes                               4.3-1                 <
isomaster                               1.3.9-2               <
jasper                                  2.0.14-1              <
jpeg                                    1.5.3-1               <
keychain                                2.7.1-1               <
kf5-kdoctools                           5.43.0-1              <
konsole                                 17.12.3-1             <
konsole5-part                           17.12.3-1             <
less                                    551-1                   less                                    551-1
libaa1                                  1.4rc5-12             <
libanthy-common                         9100h-2               <
libanthy0                               9100h-2               <
libarchive13                            3.3.2-1               <
libargp                                 20110921-3              libargp                                 20110921-3
libasn1_8                               1.5.3-1               <
libaspell15                             0.60.8-1              <
libassuan0                              2.5.3-1               <
libasyncns0                             0.8-1                 <
libatk-bridge2.0_0                      2.26.1-1              <
libatk1.0-devel                         2.26.1-1              <
libatk1.0_0                             2.26.1-1              <
libatkmm1.6_1                           2.24.2-1              <
libatomic1                              9.3.0-2                 libatomic1                              9.3.0-2
libatspi0                               2.26.2-1              <
libattr1                                2.4.48-2                libattr1                                2.4.48-2
libautotrace3                           0.31.1-19             <
libavahi-client3                        0.7-1                 <
libavahi-common3                        0.7-1                 <
libavahi-glib1                          0.7-1                 <
libblkid1                               2.33.1-2                libblkid1                               2.33.1-2
libbrotlicommon1                        1.0.7-1               | libboost-devel                          1.66.0-1
libbrotlidec1                           1.0.7-1               | libboost_atomic1.66                     1.66.0-1
                                                              > libboost_chrono1.66                     1.66.0-1
                                                              > libboost_container1.66                  1.66.0-1
                                                              > libboost_context1.66                    1.66.0-1
                                                              > libboost_coroutine1.66                  1.66.0-1
                                                              > libboost_date_time1.66                  1.66.0-1
                                                              > libboost_filesystem1.66                 1.66.0-1
                                                              > libboost_graph1.66                      1.66.0-1
                                                              > libboost_iostreams1.66                  1.66.0-1
                                                              > libboost_locale1.66                     1.66.0-1
                                                              > libboost_log1.66                        1.66.0-1
                                                              > libboost_math1.66                       1.66.0-1
                                                              > libboost_program_options1.66            1.66.0-1
                                                              > libboost_random1.66                     1.66.0-1
                                                              > libboost_regex1.66                      1.66.0-1
                                                              > libboost_serialization1.66              1.66.0-1
                                                              > libboost_signals1.66                    1.66.0-1
                                                              > libboost_stacktrace1.66                 1.66.0-1
                                                              > libboost_system1.66                     1.66.0-1
                                                              > libboost_test1.66                       1.66.0-1
                                                              > libboost_thread1.66                     1.66.0-1
                                                              > libboost_timer1.66                      1.66.0-1
                                                              > libboost_type_erasure1.66               1.66.0-1
                                                              > libboost_wave1.66                       1.66.0-1
libbz2_1                                1.0.8-1                 libbz2_1                                1.0.8-1
libcairo-devel                          1.16.0-1              <
libcairo2                               1.16.0-1              <
libcairomm1.0_1                         1.12.0-1              <
libcanberra-gtk3_0                      0.30-2                <
libcanberra0                            0.30-2                <
libcatgets1                             1.1-2                 <
libcbor                                 0.5.0-1               <
libcerf1                                1.13-1                <
libcloog-isl4                           0.18.0-2              <
libcom_err2                             1.44.5-1              <
libcompface0                            1.5.2-1               <
libcord1                                8.0.4-1               <
libcroco0.6_3                           0.6.12-1              <
libcrypt0                               2.1-1                 <
libcrypt2                               4.4.4-1                 libcrypt2                               4.4.4-1
libcurl4                                7.66.0-1              <
libdatrie1                              0.2.8-1               <
libdb5.3                                5.3.28-2                libdb5.3                                5.3.28-2
libdbus-glib_1_2                        0.108-1               <
libdbus1_3                              1.10.22-1             <
libdbusmenu-qt5_2                       0.9.3-0.2.20150604bzr <
libdconf1                               0.26.1-1              <
libdialog11                             1.2-20140112-1        <
libdialog12                             1.2-20150225-2        <
libdialog13                             1.3-2.20160828        <
libdialog14                             1.3-3.20170131        <
libdjvulibre-common                     3.5.27-1              <
libdjvulibre21                          3.5.27-1              <
libdmx1                                 1.1.4-1               <
libdotconf0                             1.3-1                 <
libedit0                                20130712-1            <
libEGL1                                 19.1.6-1              <
libEMF1                                 1.0.9-1               <
libenchant1                             1.6.1-1               <
libepoxy0                               1.4.3-1               <
libespeak1                              1.47.11-1             <
libevdocument3_4                        3.26.0-1              <
libevent2.0_5                           2.0.22-1              <
libevtlog0                              0.2.12-2              <
libevview3_3                            3.26.0-1              <
libexempi3                              2.3.0-1               <
libexif-common                          0.6.21-3              <
libexif12                               0.6.21-3              <
libexpat-devel                          2.2.6-1               <
libexpat1                               2.2.6-1               <
libext2fs2                              1.44.5-1              <
libfam0                                 0.1.10-15             <
libfdisk1                               2.33.1-2                libfdisk1                               2.33.1-2
libffi6                                 3.2.1-2                 libffi6                                 3.2.1-2
libfftw3_3                              3.3.8-1               <
libfido2                                1.3.0-2               <
libFLAC8                                1.3.2-1               <
libflite1                               1.4-1                 <
libfontconfig-common                    2.13.1-1              <
libfontconfig-devel                     2.13.1-1              <
libfontconfig1                          2.13.1-1              <
libfontenc1                             1.1.4-1               <
libfpx1                                 1.3.1.4-1             <
libfreetype-devel                       2.9.1-1               <
libfreetype6                            2.9.1-1               <
libfribidi0                             0.19.7-1              <
libFS6                                  1.0.8-1               <
libgailutil3_0                          3.22.28-1             <
libgc1                                  8.0.4-1                 libgc1                                  8.0.4-1
libgc2                                  7.6.2-3               <
libgcc1                                 9.3.0-2                 libgcc1                                 9.3.0-2
libgccpp1                               8.0.4-1               <
libgck1_0                               3.20.0-1              <
libgconf2_4                             3.2.6-2               <
libgcr-base3_1                          3.20.0-1              <
libgcr-ui3-common                       3.20.0-1              <
libgcr-ui3_1                            3.20.0-1              <
libgcr3-common                          3.20.0-1              <
libgcr3_1                               3.20.0-1              <
libgcrypt11                             1.5.3-1               <
libgcrypt20                             1.8.2-1               <
libgd2                                  2.0.36RC1-2           <
libgd3                                  2.2.5-2               <
libgdbm4                                1.13-1                  libgdbm4                                1.13-1
libgdbm6                                1.18.1-1                libgdbm6                                1.18.1-1
libgdbm_compat4                         1.18.1-1                libgdbm_compat4                         1.18.1-1
libgdk_pixbuf2.0-devel                  2.36.11-1             <
libgdk_pixbuf2.0_0                      2.36.11-1             <
libgeoclue0                             0.12.99-2             <
libggi2                                 2.2.2-4               <
libggiwmh0                              0.3.2-4               <
libgif4                                 4.1.6-12              <
libgif7                                 5.1.4-1               <
libgii1                                 1.0.2-4               <
libgirepository1.0_1                    1.54.1-1              <
libgit2-glib1.0_0                       0.26.2-1              <
libgit2_25                              0.25.1-1              <
libGL1                                  19.1.6-1              <
libglade2.0_0                           2.6.4-2               <
libglapi0                               19.1.6-1              <
libGLESv2_2                             19.1.6-1              <
libglib2.0-devel                        2.54.3-1              <
libglib2.0_0                            2.54.3-1              <
libglibmm2.4_1                          2.54.1-1              <
libGLU1                                 9.0.1-1               <
libglut3                                3.2.1-1               <
libgmime3.0_0                           3.0.5-1               <
libgmp10                                6.2.0-2                 libgmp10                                6.2.0-2
libgnome-autoar0_0                      0.2.2-1               <
libgnome-desktop3_12                    3.26.2-1              <
libgnome-keyring0                       3.12.0-2              <
libgnome-menu3_0                        3.13.3-3              <
libgnomekbd                             3.26.0-1              <
libgnomekbd-common                      3.26.0-1              <
libgnomekbd8                            3.26.0-1              <
libgnutls28                             3.3.27-1              <
libgnutls30                             3.6.9-1                 libgnutls30                             3.6.9-1
libgoa-backend1.0_1                     3.22.6-2              <
libgoa1.0_0                             3.22.6-2              <
libgomp1                                9.3.0-2                 libgomp1                                9.3.0-2
libgpg-error0                           1.37-1                <
libgpgme11                              1.9.0-1               <
libgpgmepp6                             1.9.0-1               <
libGraphicsMagick3                      1.3.35-1              <
libgraphite2-devel                      1.3.10-1              <
libgraphite2_3                          1.3.10-1              <
libgrilo0.3_0                           0.3.4-1               <
libgs9                                  9.27-2                <
libgsm1                                 1.0.17-1              <
libgspell1-common                       1.6.1-1               <
libgspell1_1                            1.6.1-1               <
libgssapi3                              1.5.3-1               <
libgssapi_krb5_2                        1.15.2-2              <
libgstinterfaces1.0_0                   1.12.5-1              <
libgstreamer1.0_0                       1.12.5-1              <
libgtk2.0-devel                         2.24.32-1             <
libgtk2.0_0                             2.24.32-1             <
libgtk3_0                               3.22.28-1             <
libgtkmm3.0_1                           3.22.2-1              <
libgtksourceview3.0-common              3.24.6-1              <
libgtksourceview3.0_1                   3.24.6-1              <
libgtop2.0_10                           2.34.2-1              <
libgucharmap2.90_7                      10.0.3-1              <
libguile17                              1.8.8-3               <
libguile2.0_22                          2.0.14-3              <
libguile2.2_1                           2.2.7-1                 libguile2.2_1                           2.2.7-1
libgxps2                                0.2.5-1               <
libharfbuzz-devel                       2.5.3-1               <
libharfbuzz-gobject0                    2.5.3-1               <
libharfbuzz-icu0                        2.5.3-1               <
libharfbuzz0                            2.5.3-1               <
libheimbase1                            1.5.3-1               <
libheimntlm0                            1.5.3-1               <
libhogweed2                             2.7.1-1               <
libhogweed4                             3.4.1-1                 libhogweed4                             3.4.1-1
libhunspell1.6_0                        1.6.1-1               <
libhx509_5                              1.5.3-1               <
libibus1.0_5                            1.5.15-1              <
libICE6                                 1.0.10-1              <
libiconv                                1.14-3                  libiconv                                1.14-3
libiconv2                               1.14-3                  libiconv2                               1.14-3
libicu51                                51.2-1                | libicu-devel                            65.1-1
libicu55                                55.1-1                <
libicu56                                56.1-1                <
libicu58                                58.2-1                <
libicu60                                60.2-1                <
libicu61                                61.1-1                  libicu61                                61.1-1
libicu64                                64.2-1                <
libicu65                                65.1-1                  libicu65                                65.1-1
libid3tag0                              0.15.1b-10            <
libidn11                                1.33-1                <
libidn2_0                               2.2.0-1                 libidn2_0                               2.2.0-1
libimagequant0                          2.10.0-1              <
libImlib2_1                             1.4.10-1              <
libintl-devel                           0.19.8.1-2              libintl-devel                           0.19.8.1-2
libintl8                                0.19.8.1-2              libintl8                                0.19.8.1-2
libiodbc2                               3.52.8-2              <
libisl10                                0.11.1-2              <
libisl13                                0.14.1-1              <
libisl15                                0.16.1-1              <
libisl22                                0.22.1-2                libisl22                                0.22.1-2
libjasper1                              1.900.22-1            <
libjasper4                              2.0.14-1              <
libjavascriptcoregtk3.0_0               2.0.4-5               <
libjbig2                                2.0-14                <
libjpeg8                                1.5.3-1               <
libjson-c-common                        0.12-1                <
libjson-c2                              0.12-1                <
libjson-glib1.0_0                       1.4.2-1               <
libk5crypto3                            1.15.2-2              <
libkafs0                                1.5.3-1               <
libKF5Archive5                          5.43.0-1              <
libKF5Attica5                           5.43.0-1              <
libKF5Auth5                             5.43.0-1              <
libKF5Bookmarks5                        5.43.0-1              <
libKF5Codecs5                           5.43.0-1              <
libKF5Completion5                       5.43.0-1              <
libKF5Config5                           5.43.0-1              <
libKF5ConfigWidgets5                    5.43.0-1              <
libKF5CoreAddons5                       5.43.0-1              <
libKF5Crash5                            5.43.0-1              <
libKF5DBusAddons5                       5.43.0-1              <
libKF5GlobalAccel5                      5.43.0-1              <
libKF5GuiAddons5                        5.43.0-1              <
libKF5I18n5                             5.43.0-1              <
libKF5IconThemes5                       5.43.0-1              <
libKF5ItemViews5                        5.43.0-1              <
libKF5JobWidgets5                       5.43.0-1              <
libKF5KIO5                              5.43.0-1              <
libKF5Notifications5                    5.43.0-1              <
libKF5NotifyConfig5                     5.43.0-1              <
libKF5Parts5                            5.43.0-1              <
libKF5Pty5                              5.43.0-1              <
libKF5Service5                          5.43.0-1              <
libKF5Solid5                            5.43.0-1              <
libKF5Sonnet5                           5.43.0-1              <
libKF5TextWidgets5                      5.43.0-1              <
libKF5Wallet5                           5.43.0-1              <
libKF5WidgetsAddons5                    5.43.0-1              <
libKF5WindowSystem5                     5.43.0-1              <
libKF5XmlGui5                           5.43.0-1              <
libkpathsea6                            20200406-1            <
libkrb5_26                              1.5.3-1               <
libkrb5_3                               1.15.2-2              <
libkrb5support0                         1.15.2-2              <
liblcms2_2                              2.9-1                 <
libllvm3.4                              3.4.2-4               <
libllvm3.5                              3.5.2-2               <
libllvm4.0                              4.0.1-1               <
libllvm5.0                              5.0.1-1               <
libllvm8                                8.0.1-1               <
libltdl7                                2.4.6-7                 libltdl7                                2.4.6-7
liblz4_1                                1.7.5-1               <
liblzma5                                5.2.4-1                 liblzma5                                5.2.4-1
liblzo2_2                               2.10-1                <
libm17n0                                1.7.0-1               <
libMagickC++6_5                         6.9.0.0-4             <
libMagickC++6_6                         6.9.5.7-2             <
libMagickC++6_8                         6.9.10.11-2           <
libMagickCore5                          6.7.6.3-4             <
libMagickCore6                          6.9.0.0-4             <
libMagickCore6_2                        6.9.5.7-2             <
libMagickCore6_5                        6.9.9.11-3            <
libMagickCore6_6                        6.9.10.11-2           <
libMagickWand6_2                        6.9.5.7-2             <
libMagickWand6_5                        6.9.9.11-3            <
libMagickWand6_6                        6.9.10.11-2           <
libmailutils-sieve-extensions           3.5-1                 <
libmailutils5                           3.5-1                 <
libmcpp0                                2.7.2-2               <
libmetalink3                            0.1.2-1               <
libming1                                0.4.8-3               <
libmpc3                                 1.1.0-1                 libmpc3                                 1.1.0-1
libmpfr4                                3.1.6-1p1             <
libmpfr6                                4.0.2-2p6               libmpfr6                                4.0.2-2p6
libmysqlclient18                        10.1.30-1             <
libncurses++w10                         6.1-1.20190727        <
libncurses-devel                        6.1-1.20190727        <
libncursesw10                           6.1-1.20190727          libncursesw10                           6.1-1.20190727
libnettle4                              2.7.1-1               <
libnettle6                              3.4.1-1                 libnettle6                              3.4.1-1
libnfs8                                 1.11.0-1              <
libnghttp2_14                           1.37.0-1              <
libnotify                               0.7.7-1               <
libnotify4                              0.7.7-1               <
libnsl2                                 1.2.0-1               <
libnspr4                                4.21-1                <
libnss3                                 3.45-1                <
libobjc4                                9.3.0-2               <
libogg0                                 1.3.1-1               <
libopenjp2_7                            2.3.0-1               <
libopenjpeg1                            1.5.2-3               <
libopenldap2_4_2                        2.4.49-1              <
libOpenVG1                              10.3.5-1              <
liborc0.4_0                             0.4.28-1              <
libotf0                                 0.9.13-1              <
libp11-kit0                             0.23.20-1               libp11-kit0                             0.23.20-1
libpango1.0-devel                       1.40.14-1             <
libpango1.0_0                           1.40.14-1             <
libpangomm1.4_1                         2.40.1-1              <
libpaper-common                         1.1.24-2              <
libpaper1                               1.1.24-2              <
libpcre-devel                           8.44-1                <
libpcre1                                8.44-1                  libpcre1                                8.44-1
libpcre16_0                             8.44-1                <
libpcre2_16_0                           10.34-1               <
libpcre2_8_0                            10.34-1               <
libpcre32_0                             8.44-1                <
libpcrecpp0                             8.44-1                <
libpcreposix0                           8.44-1                <
libpeas-common                          1.22.0-1              <
libpeas1.0_0                            1.22.0-1              <
libphonon4qt5_4                         4.9.1-2               <
libpipeline1                            1.5.1-1                 libpipeline1                            1.5.1-1
libpixman1-devel                        0.38.4-1              <
libpixman1_0                            0.38.4-1              <
libpkgconf3                             1.6.3-1                 libpkgconf3                             1.6.3-1
libplotter2                             2.6-5                 <
libpng-devel                            1.6.37-1              <
libpng15                                1.5.22-1              <
libpng16                                1.6.37-1              <
libpng16-devel                          1.6.37-1              <
libpoppler-glib8                        0.62.0-1              <
libpoppler28                            0.20.5-3              <
libpoppler44                            0.24.5-1              <
libpoppler46                            0.26.5-1              <
libpoppler49                            0.30.0-2              <
libpoppler62                            0.45.0-2              <
libpoppler66                            0.52.0-2              <
libpoppler68                            0.57.0-1              <
libpoppler73                            0.62.0-1              <
libpopt-common                          1.16-2                  libpopt-common                          1.16-2
libpopt0                                1.16-2                  libpopt0                                1.16-2
libportaudio2                           19.20140130-3         <
libpotrace0                             1.15-1                <
libpq5                                  12.2-1                <
libprocps-ng5                           3.3.11-1              <
libprocps-ng6                           3.3.12-2              <
libprocps7                              3.3.15-1              <
libprocps8                              3.3.16-1              <
libproxy1                               0.4.14-2              <
libpsl5                                 0.21.0-1                libpsl5                                 0.21.0-1
libpstoedit0                            3.73-1                <
libptexenc1                             20200406-1            <
libpulse-mainloop-glib0                 11.1-1                <
libpulse-simple0                        11.1-1                <
libpulse0                               11.1-1                <
libQt5Core5                             5.9.4-2               <
libQt5Gui5                              5.9.4-2               <
libQt5Quick5                            5.9.4-1               <
libQt5Script5                           5.9.4-1               <
libQt5Sql5                              5.9.4-2               <
libQt5Svg5                              5.9.4-1               <
libQt5TextToSpeech5                     5.9.4-1               <
libQt5X11Extras5                        5.9.4-1               <
libQt5XmlPatterns5                      5.9.4-1               <
libquadmath0                            9.3.0-2                 libquadmath0                            9.3.0-2
libquvi0.9-scripts                      0.9.20131130-2        <
libquvi0.9_4                            0.9.4-4               <
librarian0                              0.8.1-12              <
libreadline7                            7.0.3-3                 libreadline7                            7.0.3-3
librest0.7_0                            0.8.1-1               <
libroken18                              1.5.3-1               <
librsvg2_2                              2.40.20-1             <
libsasl2_3                              2.1.27-1              <
libsecret1_0                            0.18.5-1              <
libsigc2.0_0                            2.10.0-1              <
libsigsegv2                             2.10-2                  libsigsegv2                             2.10-2
libslang2                               2.3.2-2               <
libSM6                                  1.2.3-1               <
libsmartcols1                           2.33.1-2                libsmartcols1                           2.33.1-2
libsndfile1                             1.0.28-2              <
libsoup-gnome2.4_1                      2.60.3-1              <
libsoup2.4_1                            2.60.3-1              <
libsoxr0                                0.1.2-1               <
libspectre1                             0.2.8-1               <
libspeechd2                             0.8.7-1               <
libspeexdsp1                            1.2-0.1.rc3           <
libsqlite3_0                            3.30.0-1              <
libssh-common                           0.8.7-1               <
libssh2_1                               1.7.0-1               <
libssh4                                 0.8.7-1               <
libssl1.0                               1.0.2t-1              <
libssl1.1                               1.1.1f-1                libssl1.1                               1.1.1f-1
libssp0                                 6.4.0-4               <
libstartup-notification1_0              0.12-2                <
libstdc++6                              9.3.0-2                 libstdc++6                              9.3.0-2
libsybdb5                               1.00.37-1             <
libsynctex1                             20180918-1            <
libsynctex2                             20200406-1            <
libtasn1_6                              4.14-1                  libtasn1_6                              4.14-1
libtdb1                                 1.3.18-1              <
libteckit0                              2.5.9-1               <
libtelepathy-glib0                      0.24.1-1              <
libtexlua52_5                           20180918-1            <
libtexlua53_5                           20200406-1            <
libtexluajit2                           20200406-1            <
libthai0                                0.1.26-1              <
libtidy0_99_0                           20090325-1            <
libtiff5                                3.9.7-4               <
libtiff6                                4.0.9-1               <
libtinyxml2_5                           5.0.1-1               <
libtinyxml2_6                           6.0.0-1               <
libtirpc-common                         1.1.4-1               <
libtirpc3                               1.1.4-1               <
libtool                                 2.4.6-7                 libtool                                 2.4.6-7
libtotem-plparser-common                3.26.0-1              <
libtotem-plparser18                     3.26.0-1              <
libtracker2.0_0                         2.0.3-2               <
libturbojpeg                            1.2.1-2               <
libturbojpeg0                           1.5.3-1               <
libunistring2                           0.9.10-1                libunistring2                           0.9.10-1
libusb0                                 1.2.6.0-2             <
libuuid-devel                           2.33.1-2              <
libuuid1                                2.33.1-2                libuuid1                                2.33.1-2
libvoikko1                              3.8-1                 <
libvorbis                               1.3.6-1               <
libvorbis0                              1.3.6-1               <
libvorbisenc2                           1.3.6-1               <
libvorbisfile3                          1.3.6-1               <
libvpx1                                 1.3.0-2               <
libvte2.91_0                            0.50.2-1              <
libvte9                                 0.28.2-6              <
libwebkitgtk3.0_0                       2.0.4-5               <
libwebp5                                0.4.4-1               <
libwebp7                                0.6.1-2               <
libwebpmux3                             0.6.1-2               <
libwebrtc-audio-processing1             0.3-1                 <
libwind0                                1.5.3-1               <
libwmf027                               0.2.8.4-15            <
libwrap0                                7.6-26                <
libX11-devel                            1.6.9-1               <
libX11-xcb1                             1.6.9-1               <
libX11_6                                1.6.9-1               <
libXau-devel                            1.0.9-1               <
libXau6                                 1.0.9-1               <
libXaw3d8                               1.6.3-1               <
libXaw7                                 1.0.13-1              <
libxcb-composite0                       1.14-1                <
libxcb-devel                            1.14-1                <
libxcb-dri2_0                           1.14-1                <
libxcb-ewmh2                            0.4.1-1               <
libxcb-glx0                             1.14-1                <
libxcb-icccm4                           0.4.1-1               <
libxcb-image0                           0.4.0-1               <
libxcb-keysyms1                         0.4.0-1               <
libxcb-randr0                           1.14-1                <
libxcb-render-devel                     1.14-1                <
libxcb-render-util0                     0.3.9-1               <
libxcb-render0                          1.14-1                <
libxcb-shape0                           1.14-1                <
libxcb-shm-devel                        1.14-1                <
libxcb-shm0                             1.14-1                <
libxcb-sync1                            1.14-1                <
libxcb-util1                            0.4.0-1               <
libxcb-xfixes0                          1.14-1                <
libxcb-xinerama0                        1.14-1                <
libxcb-xkb1                             1.14-1                <
libxcb1                                 1.14-1                <
libXcomposite1                          0.4.5-1               <
libXcursor1                             1.2.0-1               <
libXdamage1                             1.1.5-1               <
libXdmcp-devel                          1.1.3-1               <
libXdmcp6                               1.1.3-1               <
libXext-devel                           1.3.4-1               <
libXext6                                1.3.4-1               <
libXfixes3                              5.0.3-1               <
libXfont1                               1.5.4-1               <
libXfont2_2                             2.0.4-1               <
libXft-devel                            2.3.3-1               <
libXft2                                 2.3.3-1               <
libXi6                                  1.7.10-1              <
libXinerama1                            1.1.4-1               <
libxkbcommon0                           0.10.0-1              <
libxkbfile1                             1.1.0-1               <
libxklavier16                           5.3-1                 <
libXm4                                  2.3.6-1               <
libXmHTML0                              1.1.7-13              <
libxml2                                 2.9.9-2               <
libXmu6                                 1.1.3-1               <
libXmuu1                                1.1.3-1               <
libXpm4                                 3.5.13-1              <
libXrandr2                              1.5.2-1               <
libXrender-devel                        0.9.10-1              <
libXrender1                             0.9.10-1              <
libxslt                                 1.1.29-1              <
libXss1                                 1.2.3-1               <
libXt6                                  1.2.0-1               <
libXtst6                                1.2.3-1               <
libyaml0_2                              0.1.6-2               <
libzeitgeist2.0_0                       0.9.14-2              <
libzip2                                 0.11.2-2              <
libzip5                                 1.5.1-1               <
libzzip0.13                             0.13.68-1             <
links                                   2.14-1                <
login                                   1.13-1                  login                                   1.13-1
lrzip                                   0.631-1               <
lua                                     5.3.5-1               <
lua-json                                1.3.4-1               <
lua-lpeg                                1.0.2-1               <
lua-lxp                                 1.3.0-2               <
lua-socket                              3.0-0.2.rc1           <
lua5.1                                  5.1.5-3               <
luit                                    20190106-1            <
lynx                                    2.8.7-2               <
lzip                                    1.19-1                <
lzop                                    1.03-1                <
m17n-db                                 1.7.0-2               <
m4                                      1.4.18-1                m4                                      1.4.18-1
mailutils                               3.5-1                 <
make                                    4.3-1                   make                                    4.3-1
man                                     2.7.6.1-1             <
man-db                                  2.7.6.1-1               man-db                                  2.7.6.1-1
mariadb-common                          3.0.9-1               <
mc                                      4.8.24-1              <
mcpp                                    2.7.2-2               <
mingw64-i686-atk1.0                     2.26.1-1              <
mingw64-i686-binutils                   2.34-1                <
mingw64-i686-bzip2                      1.0.6-4               <
mingw64-i686-cairo                      1.14.12-1             <
mingw64-i686-expat                      2.2.2-1               <
mingw64-i686-fontconfig                 2.12.6-1              <
mingw64-i686-freetype2                  2.8.1-1               <
mingw64-i686-gcc-core                   9.2.0-2               <
mingw64-i686-gcc-g++                    9.2.0-2               <
mingw64-i686-gdk-pixbuf2.0              2.36.11-1             <
mingw64-i686-gettext                    0.19.8.1-2            <
mingw64-i686-glib2.0                    2.54.3-1              <
mingw64-i686-gtk2.0                     2.24.31-1             <
mingw64-i686-harfbuzz                   1.7.6-1               <
mingw64-i686-headers                    7.0.0-1               <
mingw64-i686-jasper                     2.0.14-1              <
mingw64-i686-jbigkit                    2.1-1                 <
mingw64-i686-libffi                     3.2.1-1               <
mingw64-i686-libgnurx                   2.5-3                 <
mingw64-i686-libjpeg-turbo              1.5.3-1               <
mingw64-i686-libpng                     1.6.34-1              <
mingw64-i686-lzo2                       2.08-1                <
mingw64-i686-ncurses                    6.0-12.20171125       <
mingw64-i686-pango1.0                   1.40.14-1             <
mingw64-i686-pcre                       8.40-3                <
mingw64-i686-pixman                     0.38.4-1              <
mingw64-i686-runtime                    7.0.0-1               <
mingw64-i686-tiff                       4.0.9-1               <
mingw64-i686-win-iconv                  0.0.6-2               <
mingw64-i686-windows-default-manifest   6.4-1                 <
mingw64-i686-winpthreads                7.0.0-1               <
mingw64-i686-xz                         5.2.3-1               <
mingw64-i686-zlib                       1.2.11-1              <
mingw64-x86_64-binutils                 2.34-1                <
mingw64-x86_64-bzip2                    1.0.6-4               <
mingw64-x86_64-freetype2                2.8.1-1               <
mingw64-x86_64-gcc-core                 9.2.0-2               <
mingw64-x86_64-gcc-g++                  9.2.0-2               <
mingw64-x86_64-headers                  7.0.0-1               <
mingw64-x86_64-libgnurx                 2.5-3                 <
mingw64-x86_64-libpng                   1.6.34-1              <
mingw64-x86_64-ncurses                  6.0-12.20171125       <
mingw64-x86_64-runtime                  7.0.0-1               <
mingw64-x86_64-windows-default-manifest 6.4-1                 <
mingw64-x86_64-winpthreads              7.0.0-1               <
mingw64-x86_64-zlib                     1.2.11-1              <
mintty                                  3.1.4-1                 mintty                                  3.1.4-1
mkfontscale                             1.2.1-1               <
mkisofs                                 1.1.11-1              <
multitail                               6.5.0-1               <
mutt                                    1.13.5-1              <
mysql-common                            10.3.14-1             <
nautilus                                3.26.2-1              <
nautilus-file-roller                    3.26.2-1              <
nc                                      1.107-4               <
ncurses                                 6.1-1.20190727          ncurses                                 6.1-1.20190727
ncurses-demo                            6.1-1.20190727        <
nedit                                   5.6-1                 <
nmh                                     1.7.1-1               <
openldap                                2.4.49-1              <
openssh                                 8.2p1-1               <
openssl                                 1.1.1f-1                openssl                                 1.1.1f-1
optipng                                 0.7.7-1               <
p11-kit                                 0.23.20-1               p11-kit                                 0.23.20-1
p11-kit-trust                           0.23.20-1               p11-kit-trust                           0.23.20-1
p7zip                                   15.14.1-1             <
perl                                    5.30.2-1                perl                                    5.30.2-1
perl-Carp                               1.38-2                <
perl-Digest-SHA                         6.02-2                <
perl-Encode-Locale                      1.05-3                <
perl-Error                              0.17029-1             <
perl-File-Listing                       6.04-7                <
perl-HTML-Parser                        3.72-3                <
perl-HTML-Tagset                        3.20-7                <
perl-HTTP-Cookies                       6.08-1                <
perl-HTTP-Daemon                        6.06-2                <
perl-HTTP-Date                          6.05-1                <
perl-HTTP-Message                       6.22-1                <
perl-HTTP-Negotiate                     6.01-7                <
perl-Image-Magick                       6.9.10.11-2           <
perl-IO-HTML                            1.001-4               <
perl-IO-String                          1.08-7                <
perl-libwww-perl                        6.44-1                <
perl-LWP                                6.13-1                <
perl-LWP-MediaTypes                     6.04-2                <
perl-Net-HTTP                           6.19-2                <
perl-Pod-Simple                         3.35-2                <
perl-Proc-ProcessTable                  0.59-2                <
perl-Scalar-List-Utils                  1.55-1                <
perl-Socket                             2.029-2               <
perl-Stow                               2.3.1-3               <
perl-TermReadKey                        2.38-2                <
perl-Test-Harness                       3.42-2                  perl-Test-Harness                       3.42-2
perl-TimeDate                           2.32-1                <
perl-Tk                                 804.035-1             <
perl-Tk-Pod                             0.9943-2              <
perl-Try-Tiny                           0.30-2                <
perl-Unicode-Normalize                  1.26-2                  perl-Unicode-Normalize                  1.26-2
perl-URI                                1.76-2                <
perl-WWW-RobotRules                     6.02-7                <
perl-XML-Parser                         2.46-2                <
perl_autorebase                         5.30.2-1                perl_autorebase                         5.30.2-1
perl_base                               5.30.2-1                perl_base                               5.30.2-1
pkg-config                              1.6.3-1                 pkg-config                              1.6.3-1
pkgconf                                 1.6.3-1                 pkgconf                                 1.6.3-1
poppler                                 0.62.0-1              <
poppler-data                            0.4.8-1               <
popt                                    1.16-2                <
procmail                                3.22-15               <
procps                                  3.3.10-1              <
procps-ng                               3.3.16-1              <
pscan                                   1.2-1                 <
psmisc                                  22.20-1               <
pstoedit                                3.73-1                <
publicsuffix-list-dafsa                 20200326-1              publicsuffix-list-dafsa                 20200326-1
pulseaudio                              11.1-1                <
pulseaudio-module-x11                   11.1-1                <
pulseaudio-utils                        11.1-1                <
python-pip-wheel                        19.2.3-1              <
python-setuptools-wheel                 41.2.0-1              <
python2                                 2.7.16-1              <
python27                                2.7.16-1              <
python27-libxml2                        2.9.9-2               <
python27-tkinter                        2.7.16-1              <
python3                                 3.6.8-1               <
python36                                3.6.9-1               <
python36-cairo                          1.18.1-1              <
python36-chardet                        3.0.4-1               <
python36-dbus                           1.2.8-1               <
python36-gi                             3.26.1-2              <
python36-idna                           2.8-1                 <
python36-requests                       2.21.0-1              <
python36-six                            1.12.0-1              <
python36-unidecode                      1.0.23-1              <
python36-urllib3                        1.24.1-1              <
qt3-doc                                 3.3.8b-20             <
rarian                                  0.8.1-12              <
rdtool                                  0.6.38-3              <
rebase                                  4.4.4-1                 rebase                                  4.4.4-1
rgb                                     1.0.6-1               <
rpm                                     4.12.0-1              <
rsh                                     0.17-2                <
rsh-server                              0.17-2                <
rsync                                   3.1.2-1               <
ruby                                    2.6.4-1               <
ruby-builder                            3.2.3-1               <
ruby-did_you_mean                       1.2.2-1               <
ruby-minitest                           5.10.3-1              <
ruby-minitest4                          5.10.3-1              <
ruby-rake                               12.3.2-1              <
ruby-rdoc                               6.1.2-1               <
ruby-rdtool                             0.6.38-3              <
rubygems                                3.0.3-1               <
run                                     1.3.4-2                 run                                     1.3.4-2
rxvt                                    2.7.10-1              <
rxvt-unicode                            9.22-4                <
rzip                                    2.1-1                 <
screen                                  4.8.0-1               <
sed                                     4.4-1                   sed                                     4.4-1
setxkbmap                               1.3.2-1               <
sgml-common                             0.6.3-3               <
shared-mime-info                        1.8-1                 <
showfont                                1.0.4-1               <
shutdown                                2.0-2                 <
smartmontools                           7.1-1                 <
sound-theme-freedesktop                 0.8-1                 <
speech-dispatcher                       0.8.7-1               <
speexdsp                                1.2-0.1.rc3           <
sqlite3                                 3.30.0-1              <
sqlite3-vfslog                          3.30.0-1              <
stow                                    2.3.1-3               <
stunnel                                 5.56-1                <
suomi-malaga                            1.19-1                <
syslog-ng                               3.2.5-2               <
t1lib5                                  5.1.2-13              <
tar                                     1.29-1                  tar                                     1.29-1
tcl                                     8.6.8-1               <
tcl-tix                                 8.4.3-3               <
tcl-tk                                  8.6.8-1               <
tcsh                                    6.22.01-1             <
terminfo                                6.1-1.20190727          terminfo                                6.1-1.20190727
terminfo-extra                          6.1-1.20190727          terminfo-extra                          6.1-1.20190727
texinfo                                 6.7-1                   texinfo                                 6.7-1
texinfo-tex                             6.7-1                 <
texlive                                 20200406-1            <
texlive-collection-basic                20200406-1            <
texlive-collection-fontutils            20200406-1            <
texlive-collection-latex                20200406-1            <
tidy                                    20090325-1            <
tiff                                    4.0.9-1               <
time                                    1.9-1                 <
tmux                                    2.6-1                 <
twm                                     1.0.10-1              <
tzcode                                  2019c-1                 tzcode                                  2019c-1
tzdata                                  2019c-1                 tzdata                                  2019c-1
unace                                   1.2b-1                <
unalz                                   0.65-1                <
units                                   2.19-1                <
unzip                                   6.0-17                  unzip                                   6.0-17
urw-base35-fonts                        20170801-5            <
util-linux                              2.33.1-2                util-linux                              2.33.1-2
viewres                                 1.0.6-1               <
vim                                     8.2.0486-1            <
vim-common                              8.2.0486-1            <
vim-minimal                             8.2.0486-1              vim-minimal                             8.2.0486-1
w32api-headers                          7.0.0-1                 w32api-headers                          7.0.0-1
w32api-runtime                          7.0.0-1                 w32api-runtime                          7.0.0-1
w3m                                     0.5.3-3               <
wdiff                                   1.2.2-1               <
webcheck                                1.10.4-1              <
wget                                    1.19.1-2                wget                                    1.19.1-2
which                                   2.20-2                  which                                   2.20-2
whois                                   5.4.0-1               <
windows-default-manifest                6.4-1                   windows-default-manifest                6.4-1
x11perf                                 1.6.1-1               <
xauth                                   1.1-1                 <
xbiff                                   1.0.4-1               <
xbitmaps                                1.1.2-1               <
xcalc                                   1.1.0-1               <
xclip                                   0.13-1                <
xclipboard                              1.1.3-1               <
xclock                                  1.0.9-1               <
xconsole                                1.0.7-1               <
xcursor-themes                          1.0.6-1               <
xcursorgen                              1.0.7-1               <
xdg-user-dirs                           0.16-1                <
xditview                                1.0.5-1               <
xdpyinfo                                1.3.2-1               <
xedit                                   1.2.2-1               <
xev                                     1.2.3-1               <
xeyes                                   1.1.2-1               <
xf86-video-dummy                        0.3.8-1               <
xf86-video-nested                       0.1.0-8.20160719git   <
xfd                                     1.1.3-1               <
xfontsel                                1.0.6-1               <
xgc                                     1.0.5-1               <
xhost                                   1.0.8-1               <
xhtml2ps                                1.0b7-2               <
xinit                                   1.4.1-1               <
xinput                                  1.6.3-1               <
xkbcomp                                 1.4.3-1               <
xkbevd                                  1.1.4-1               <
xkbprint                                1.0.5-1               <
xkbutils                                1.0.4-1               <
xkeyboard-config                        2.29-1                <
xkill                                   1.0.5-1               <
xlaunch                                 20160530-1            <
xload                                   1.1.3-1               <
xlogo                                   1.0.5-1               <
xlsatoms                                1.1.3-1               <
xlsclients                              1.1.4-1               <
xlsfonts                                1.0.6-1               <
xmag                                    1.0.6-1               <
xman                                    1.1.5-1               <
xmessage                                1.0.5-1               <
xmh                                     1.0.3-1               <
XmHTML                                  1.1.7-13              <
xml2po                                  0.20.10-2             <
xmodmap                                 1.0.10-1              <
xorg-server                             1.20.5-3              <
xorg-server-common                      1.20.5-3              <
xorg-x11-fonts-dpi100                   7.5-4                 <
xorg-x11-fonts-dpi75                    7.5-4                 <
xorg-x11-fonts-misc                     7.5-4                 <
xorg-x11-fonts-Type1                    7.5-4                 <
xorgproto                               2020.1-1              <
xpdf                                    4.02-1                <
xprop                                   1.2.4-1               <
xrandr                                  1.5.1-1               <
xrdb                                    1.2.0-1               <
xrefresh                                1.0.6-1               <
xscope                                  1.4-1                 <
xset                                    1.2.4-1               <
xsetroot                                1.1.2-1               <
xterm                                   353-1                 <
xwd                                     1.0.7-1               <
xwin-xdg-menu                           20170321-1            <
xwininfo                                1.1.5-1               <
xxd                                     8.2.0486-1            <
xz                                      5.2.4-1                 xz                                      5.2.4-1
zenity                                  3.26.0-1              <
zip                                     3.0-12                <
zlib-devel                              1.2.11-1              <
zlib0                                   1.2.11-1                zlib0                                   1.2.11-1
zoo                                     2.10-1                <
zsh                                     5.5.1-1               <
zziplib                                 0.13.68-1             <

You should install the missing packages on your site until the autotool runs correctly.


Alternatively, you could also try throwing away the m4 macros:

& git clone git://github.com/gansm/finalcut.git
& cd finalcut
& rm m4/libtool.m4 m4/lt~obsolete.m4 m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4
& aclocal
& autoconf
& autoheader
& libtoolize --copy
& automake --add-missing --copy
& ./configure --prefix=/usr
& make

Check your m4 line endings:

for M4 in ./m4/*; do grep -q -U $'\r' "$M4" && echo "CRNL -> $M4" || echo "NL -> $M4"; done
abreu20011 commented 4 years ago

I still trying to install differente packages. Also try to use your alternative solution, but for now, nothig... I'll try more packages and notify here :)

gansm commented 4 years ago

Maybe you should also consider that your Cygwin installation (or your libtool installation) is broken. Here it might be easier to rename the current installation path and consider a parallel Cygwin installation.

Just one more thing: Do you always delete all FINAL CUT data from your hard disk before you check it out and try again?

abreu20011 commented 4 years ago

Finally works!! You were right: I reinstalled cygwin with all developer packages, and now works :)

gansm commented 4 years ago

That' excellent, that it finally works with your installation.