[Dovecot] Error Building v2.2
Hello,
I am trying to build Dovecot v2.2 (nightly version 20130326, which I have renamed and use as 2.2.0) on CentOS 6.4 x86_64 and I am having a problem: ...
- ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --target=x86_64-redhat-linux-gnu --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info 'INSTALL_DATA=install -c -p -m644' --docdir=/usr/share/doc/dovecot-2.2.0 --disable-static --disable-rpath --with-nss --with-shadow --with-pam --with-gssapi=plugin --with-ldap=plugin --with-sql=plugin --with-pgsql --with-mysql --with-sqlite --with-zlib --with-libcap --with-ssl=openssl --with-ssldir=/etc/pki/dovecot --with-solr --with-docs --with-bzlib configure: error: unrecognized option: --docdir=/usr/share/doc/dovecot-2.2.0
I found here: http://www.dovecot.org/list/dovecot/2011-April/058420.html that --docdir option exists when autoconf version > 2.60.
Yet:
$ rpm -qa | grep autoconf
autoconf-2.63-5.1.el6.noarch
So, what may be wrong?
Please help.
Thanks, Nick
Hi,
just a quick guess, but maybe you need to run the supplied 'autogen.sh' script before running configure, so your configure scripts gets regenerated using _your_ installed version of autoconf.
Chris
Am Tue, 26 Mar 2013 12:14:03 +0200 schrieb Nikolaos Milas nmilas@noa.gr:
Hello,
I am trying to build Dovecot v2.2 (nightly version 20130326, which I have renamed and use as 2.2.0) on CentOS 6.4 x86_64 and I am having a problem: ...
- ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --target=x86_64-redhat-linux-gnu --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info 'INSTALL_DATA=install -c -p -m644' --docdir=/usr/share/doc/dovecot-2.2.0 --disable-static --disable-rpath --with-nss --with-shadow --with-pam --with-gssapi=plugin --with-ldap=plugin --with-sql=plugin --with-pgsql --with-mysql --with-sqlite --with-zlib --with-libcap --with-ssl=openssl --with-ssldir=/etc/pki/dovecot --with-solr --with-docs --with-bzlib configure: error: unrecognized option: --docdir=/usr/share/doc/dovecot-2.2.0
I found here: http://www.dovecot.org/list/dovecot/2011-April/058420.html that --docdir option exists when autoconf version > 2.60.
Yet:
$ rpm -qa | grep autoconf autoconf-2.63-5.1.el6.noarch
So, what may be wrong?
Please help.
Thanks, Nick
-- Kind regards, Mit freundlichen Grüßen, Christian Wiese
Follow us on Facebook: http://www.facebook.com/pages/Securepoint-GmbH/132451210137395
Follow us on Twitter: http://twitter.com/SecurepointStat
Securepoint GmbH Christian Wiese Salzstr. 1 D-21335 Lueneburg http://www.securepoint.de Tele: ++49 4131 2401-0 Fax: ++49 4131 2401-50 Lueneburg HRB 1776
CONFIDENTIALITY : This e-mail and any attachments are confidential and may be privileged. If you are not a named recipient, please notify the sender immediately and do not disclose the contents to another person, use it for any purpose or store or copy the information in any medium.
GEHEIMHALTUNGSPFLICHT : Dieses E-Mail und alle damit verbundenen Anlagen sind vertraulich und dürfen nur bestimmten Personen zugänglich gemacht werden. Sofern Sie nicht zu den angegebenen Empfängern gehören, benachrichtigen Sie bitte unverzüglich den Absender. Der Inhalt darf weder an Dritte weitergegeben noch zu anderen Zwecken verwendet werden. Die Informationen dürfen auch nicht auf einem Datenträger gespeichert oder auf einen Datenträger kopiert werden.
On 26/3/2013 12:46 μμ, Christian Wiese wrote:
just a quick guess, but maybe you need to run the supplied 'autogen.sh' script before running configure, so your configure scripts gets regenerated using_your_ installed version of autoconf.
Thanks,
I am using an SRPM το build RPMs. This SRPM was running fine with earlier versions of dovecot - I don't see any reference of autogen therein.
The SRPM is: http://ns.fakessh.eu/rpms/dovecot-2.1.8-1.centme.src.rpm
I've tried building on CentOS 5.9 as well, but it failed with the same error. Again, I did not have such problems when building 2.1.x versions.
Any other ideas?
Nick
Hi Nick,
long time I haven't used RPMs or SRPMs, so I cannot really help about it.
I am using an SRPM το build RPMs. This SRPM was running fine with earlier versions of dovecot - I don't see any reference of autogen therein.
That there is no "reference of autogen" within the spec we shouldn't really wondering about, maybe because this spec file is normally used together with "release tarballs".
I fetched the nightly snapshot you are using to check the included configure script, to see what version of autoconf was used to generate it.
---------------------------snip-------------------------------------- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for Dovecot 20130326. ---------------------------snip--------------------------------------
As we see the included configure script was generate using autoconf 2.59.
The SRPM is: http://ns.fakessh.eu/rpms/dovecot-2.1.8-1.centme.src.rpm
I've tried building on CentOS 5.9 as well, but it failed with the same error. Again, I did not have such problems when building 2.1.x versions.
Most probably the configure scripts of those version have been generated with an autoconf version > 2.59.
Taking a quick look into the dovecot 2.1.12 sources reveals that the included configure script was generated with autoconf 2.68.
---------------------------snip-------------------------------------- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for Dovecot 2.1.12. ---------------------------snip--------------------------------------
So I guess we have nailed down the problem ;)
Any other ideas?
I would suggest that you really try to tweak the spec file of that package to regenerate the configure script. I have already seen that there is no autogen.sh shipped within the nightly snapshots, so you might want to try to call 'autorecon -vfi' _before_ calling 'configure'.
Nick
Good Luck, Chris
I made a little typo
I would suggest that you really try to tweak the spec file of that package to regenerate the configure script. I have already seen that there is no autogen.sh shipped within the nightly snapshots, so you might want to try to call 'autorecon -vfi' _before_ calling 'configure'.
try to call 'autoreconf -vfi' ;)
On 26/3/2013 1:35 μμ, Christian Wiese wrote:
try to call 'autoreconf -vfi';)
That's pure magic - autoreconf did the trick (on CentOS 6)!
I, a poor man trying to build these rocket-science apps, could not do it without your magic...
Yet, it did not work on CentOS 5:
autoreconf: Entering directory .' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force aclocal:configure.ac:294: warning: macro
AM_ICONV' not found in library
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
aclocal:configure.ac:294: warning: macro `AM_ICONV' not found in library
autoreconf: running: /usr/bin/autoconf --force
configure.ac:294: error: possibly undefined macro: AM_ICONV
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1
Any ideas?
Also, on CentOS 6, much later down the compilation, I got another error:
...
./../../sieve-generator.h:78: error: expected specifier-qualifier-list
before 'ARRAY_DEFINE'
cmd-vacation.c: In function 'ext_vacation_operation_execute':
cmd-vacation.c:696: warning: implicit declaration of function 'ARRAY_DEFINE'
cmd-vacation.c:696: error: 'norm_addresses' undeclared (first use in
this function)
cmd-vacation.c:696: error: (Each undeclared identifier is reported only once
cmd-vacation.c:696: error: for each function it appears in.)
cmd-vacation.c:696: error: expected expression before 'const'
cmd-vacation.c:712: warning: type defaults to 'int' in declaration of
'type name'
cmd-vacation.c:712: error: size of array 'type name' is negative
cmd-vacation.c:726: warning: type defaults to 'int' in declaration of
'type name'
cmd-vacation.c:727: warning: type defaults to 'int' in declaration of
'type name'
make[5]: *** [cmd-vacation.lo] Error 1
make[5]: Leaving directory
/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3/src/lib-sieve/plugins/vacation' make[4]: *** [all-recursive] Error 1 make[4]: Leaving directory
/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3/src/lib-sieve/plugins'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory
/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3/src/lib-sieve' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory
/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3'
Could you shed some light on this as well? Perhaps pigeonhole 2.1-0.3.3 is not compatible with 2.2 ? Any suggestions?
Thanks and Regards, Nick
Hi Nick,
try to call 'autoreconf -vfi';)
That's pure magic - autoreconf did the trick (on CentOS 6)!
I, a poor man trying to build these rocket-science apps, could not do it without your magic...
Don't worry... that is no rocket science ;) I agree that dealing with "autofoo" can be very annoying but there is no reason to fear it. You simply need to get some experience with it which is hard to get when using pre-built binary packages ;)
Yet, it did not work on CentOS 5:
autoreconf: Entering directory
.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force aclocal:configure.ac:294: warning: macro
AM_ICONV' not found in library autoreconf: configure.ac: tracing autoreconf: running: libtoolize --copy --force aclocal:configure.ac:294: warning: macro `AM_ICONV' not found in library autoreconf: running: /usr/bin/autoconf --force configure.ac:294: error: possibly undefined macro: AM_ICONV If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. autoreconf: /usr/bin/autoconf failed with exit status: 1
I think the iconv.m4 is missing which is installed by gettext. Maybe you have gettext development stuff installed on the machine where the autoreconf is working. So you might want to install it on your CentOS 5 machine too.
Also, on CentOS 6, much later down the compilation, I got another error:
... ./../../sieve-generator.h:78: error: expected specifier-qualifier-list before 'ARRAY_DEFINE' cmd-vacation.c: In function 'ext_vacation_operation_execute': cmd-vacation.c:696: warning: implicit declaration of function 'ARRAY_DEFINE' cmd-vacation.c:696: error: 'norm_addresses' undeclared (first use in this function) cmd-vacation.c:696: error: (Each undeclared identifier is reported only once cmd-vacation.c:696: error: for each function it appears in.) cmd-vacation.c:696: error: expected expression before 'const' cmd-vacation.c:712: warning: type defaults to 'int' in declaration of 'type name' cmd-vacation.c:712: error: size of array 'type name' is negative cmd-vacation.c:726: warning: type defaults to 'int' in declaration of 'type name' cmd-vacation.c:727: warning: type defaults to 'int' in declaration of 'type name' make[5]: *** [cmd-vacation.lo] Error 1 make[5]: Leaving directory
/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3/src/lib-sieve/plugins/vacation' make[4]: *** [all-recursive] Error 1 make[4]: Leaving directory
/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3/src/lib-sieve/plugins' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3/src/lib-sieve' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory
/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/dovebuilder/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.1-pigeonhole-0.3.3'Could you shed some light on this as well? Perhaps pigeonhole 2.1-0.3.3 is not compatible with 2.2 ? Any suggestions?
Pigeonhole 2.1-0.3.3 is not compatible with dovecot 2.2, thus it is mandatory to update pigeonhole too. There seem to be no snapshot tarballs for it, so you most probably need to create your own from the correct mercurial branch.
see: http://hg.rename-it.nl/dovecot-2.2-pigeonhole/
Hint: You can create a tarball from it through the web interface above.
Cheers, Chris
On 26/3/2013 2:36 μμ, Christian Wiese wrote:
Pigeonhole 2.1-0.3.3 is not compatible with dovecot 2.2, thus it is mandatory to update pigeonhole too. There seem to be no snapshot tarballs for it, so you most probably need to create your own from the correct mercurial branch.
Tried with dovecot-2-2-pigeonhole-097764f6bbe3 which I renamed as dovecot-2.2-pigeonhole-0.3.4 and at some point it failed as well:
...
- pushd dovecot-2.2-pigeonhole-0.3.4 ~/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.2-pigeonhole-0.3.4 ~/rpmbuild/BUILD/dovecot-2.2.0
- CFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fno-strict-aliasing'
- export CFLAGS
- CXXFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'
- export CXXFLAGS
- FFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/lib64/gfortran/modules'
- export FFLAGS
- ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --target=x86_64-redhat-linux-gnu --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info 'INSTALL_DATA=install -c -p -m644' --disable-static --with-dovecot=../ --without-unfinished-features /var/tmp/rpm-tmp.yRHSSw: line 93: ./configure: No such file or directory error: Bad exit status from /var/tmp/rpm-tmp.yRHSSw (%build)
Any ideas?
It may be that the 2.1 spec file needs heavier (than what I've done) customization to be suitable for v2.2 compilation...
Thanks for your kind help.
Nick
Hi Nick,
Tried with dovecot-2-2-pigeonhole-097764f6bbe3 which I renamed as dovecot-2.2-pigeonhole-0.3.4 and at some point it failed as well:
...
- pushd dovecot-2.2-pigeonhole-0.3.4 ~/rpmbuild/BUILD/dovecot-2.2.0/dovecot-2.2-pigeonhole-0.3.4 ~/rpmbuild/BUILD/dovecot-2.2.0
- CFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fno-strict-aliasing'
- export CFLAGS
- CXXFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'
- export CXXFLAGS
- FFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/lib64/gfortran/modules'
- export FFLAGS
- ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --target=x86_64-redhat-linux-gnu --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info 'INSTALL_DATA=install -c -p -m644' --disable-static --with-dovecot=../ --without-unfinished-features /var/tmp/rpm-tmp.yRHSSw: line 93: ./configure: No such file or directory error: Bad exit status from /var/tmp/rpm-tmp.yRHSSw (%build)
Any ideas?
Without knowing the spec file it is hard to tell but I think that you didn't run autogen.sh shipped with the dovecot-pigeonhole sources, because "./configure: No such file or directory error" is kind of explicit about what went wrong. So I bet you simply need to run the 'autogen.sh' script shipped with the pigeonhole sources, to get a configure script generated. Needless to say that this has to be done before actually calling configure, so most probably calling autogen.sh right after the "pushd dovecot-2.2-pigeonhole-0.3.4" might be a good idea ;)
Cheers, Chris
On 26/3/2013 4:42 μμ, Christian Wiese wrote:
most probably calling autogen.sh right after the "pushd dovecot-2.2-pigeonhole-0.3.4" might be a good idea
I found I needed to add:
%{_builddir}/%{name}-%{version}/dovecot-2.2-pigeonhole-%{pigeonholever}/autogen.sh
....at the suggested point (calling autogen.sh alone would not work).
Also I had to add (at the %files section):
%{_libdir}/dovecot/libssl_iostream_openssl.so
...because otherwise I got the error:
RPM build errors:
Installed (but unpackaged) file(s) found:
/usr/lib64/dovecot/libssl_iostream_openssl.so
And, finally, build was finished successfully.
I haven't installed/tested it yet, but at least RPMs were created fine.
I'll post the final package soon in case someone would like to use it.
However, on CentOS 5, it didn't work. autoreconf did not output errors after I installed gettext-devel but it again threw:
- ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --target=x86_64-redhat-linux-gnu --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/usr/com --mandir=/usr/share/man --infodir=/usr/share/info 'INSTALL_DATA=install -c -p -m644' --docdir=/usr/share/doc/dovecot-2.2.0 --disable-static --disable-rpath --with-nss --with-shadow --with-pam --with-gssapi=plugin --with-ldap=plugin --with-sql=plugin --with-pgsql --with-mysql --with-sqlite --with-zlib --with-libcap --with-ssl=openssl --with-ssldir=/etc/pki/dovecot --with-solr --with-docs --with-bzlib configure: error: unrecognized option: --docdir=/usr/share/doc/dovecot-2.2.0
Any other suggestions?
Thanks again for your valuable guidance.
Nick
On 26/3/2013 9:40 μμ, Nikolaos Milas wrote:
However, on CentOS 5, it didn't work. autoreconf did not output errors after I installed gettext-devel but it again threw:
Hmm, I forgot; According to: http://www.dovecot.org/list/dovecot/2011-April/058420.html, --docdir option exists when autoconf version > 2.60, but CentOS / RHEL 5 has version 2.59.
So, how do we build Dovecot v2.2 on CentOS 5 ?
Thanks, Nick
Hi Nick,
good to hear that you had some partial success at least!
However, on CentOS 5, it didn't work. autoreconf did not output errors after I installed gettext-devel but it again threw:
Hmm, I forgot; According to: http://www.dovecot.org/list/dovecot/2011-April/058420.html, --docdir option exists when autoconf version > 2.60, but CentOS / RHEL 5 has version 2.59.
So, how do we build Dovecot v2.2 on CentOS 5 ?
What about _not_ passing the --docdir configure option at all when building for CentOS 5? As I mentioned earlier I have not much experience when it comes to RPM stuff, but maybe there is a way to check for the CentOS version within the spec file, to decide if you should pass the --docdir or not. If that is not possible you might need to create a dedicated SRPM for each CentOS version.
Cheers, Chris
On 26/3/2013 10:57 μμ, Nikolaos Milas wrote:
So, how do we build Dovecot v2.2 on CentOS 5 ?
I decided to use: ftp://ftp.pbone.net/mirror/ftp.sourceforge.net/pub/sourceforge/h/hp/hphp/CentOS%205%2064bit/RPM/autoconf-2.63-3.noarch.rpm
which required me to build m4 with a version > 1.4.7 (because I couldn't find such an m4 version around).
Therefore, I used: https://oss.oracle.com/el5/SRPMS/m4-1.4.5-3.el5.1.src.rpm with source for v1.4.9 (from: ftp://ftp.gnu.org/gnu/m4/) and I built m4-1.4.9-1.el5.1.x86_64.rpm
After that, I was able to build Dovecot 2.2 successfully on CentOS 5.
Nevertheless, I had a bunch of warnings from autoconf, which I copy below, in case someone can suggest how to avoid them.
Thanks and regards, Nick
autoconf warnings follow:
=========================================================================
autoreconf -vfi autoreconf: Entering directory
.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from... /usr/share/aclocal/libtool.m4:615: AC_LIBTOOL_COMPILER_OPTION is expanded from... /usr/share/aclocal/libtool.m4:4835: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... /usr/share/aclocal/libtool.m4:2668: _LT_AC_LANG_C_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:2667: AC_LIBTOOL_LANG_C_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from... /usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from... /usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from... configure.ac:293: the top level configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached /usr/share/aclocal/libtool.m4:660: AC_LIBTOOL_LINKER_OPTION is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached /usr/share/aclocal/libtool.m4:2749: _LT_AC_LANG_CXX_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:2748: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:1804: _LT_AC_TAGCONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached /usr/share/aclocal/libtool.m4:3916: _LT_AC_LANG_F77_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:3915: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached /usr/share/aclocal/libtool.m4:4018: _LT_AC_LANG_GCJ_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:4017: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached autoreconf: configure.ac: tracing configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from... aclocal.m4:1878: AC_LIBTOOL_COMPILER_OPTION is expanded from... aclocal.m4:6086: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... aclocal.m4:3931: _LT_AC_LANG_C_CONFIG is expanded from... aclocal.m4:3930: AC_LIBTOOL_LANG_C_CONFIG is expanded from... aclocal.m4:1343: AC_LIBTOOL_SETUP is expanded from... aclocal.m4:1323: _AC_PROG_LIBTOOL is expanded from... aclocal.m4:1288: AC_PROG_LIBTOOL is expanded from... configure.ac:293: the top level configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:1923: AC_LIBTOOL_LINKER_OPTION is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4008: _LT_AC_LANG_CXX_CONFIG is expanded from... aclocal.m4:4007: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... aclocal.m4:3067: _LT_AC_TAGCONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:5171: _LT_AC_LANG_F77_CONFIG is expanded from... aclocal.m4:5170: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:5273: _LT_AC_LANG_GCJ_CONFIG is expanded from... aclocal.m4:5272: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached autoreconf: running: libtoolize --copy --force configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from... /usr/share/aclocal/libtool.m4:615: AC_LIBTOOL_COMPILER_OPTION is expanded from... /usr/share/aclocal/libtool.m4:4835: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... /usr/share/aclocal/libtool.m4:2668: _LT_AC_LANG_C_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:2667: AC_LIBTOOL_LANG_C_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from... /usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from... /usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from... configure.ac:293: the top level configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached /usr/share/aclocal/libtool.m4:660: AC_LIBTOOL_LINKER_OPTION is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached /usr/share/aclocal/libtool.m4:2749: _LT_AC_LANG_CXX_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:2748: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:1804: _LT_AC_TAGCONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached /usr/share/aclocal/libtool.m4:3916: _LT_AC_LANG_F77_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:3915: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached /usr/share/aclocal/libtool.m4:4018: _LT_AC_LANG_GCJ_CONFIG is expanded from... /usr/share/aclocal/libtool.m4:4017: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached autoreconf: running: /usr/bin/autoconf --force configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from... aclocal.m4:1878: AC_LIBTOOL_COMPILER_OPTION is expanded from... aclocal.m4:6086: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... aclocal.m4:3931: _LT_AC_LANG_C_CONFIG is expanded from... aclocal.m4:3930: AC_LIBTOOL_LANG_C_CONFIG is expanded from... aclocal.m4:1343: AC_LIBTOOL_SETUP is expanded from... aclocal.m4:1323: _AC_PROG_LIBTOOL is expanded from... aclocal.m4:1288: AC_PROG_LIBTOOL is expanded from... configure.ac:293: the top level configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:1923: AC_LIBTOOL_LINKER_OPTION is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4008: _LT_AC_LANG_CXX_CONFIG is expanded from... aclocal.m4:4007: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... aclocal.m4:3067: _LT_AC_TAGCONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:5171: _LT_AC_LANG_F77_CONFIG is expanded from... aclocal.m4:5170: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:5273: _LT_AC_LANG_GCJ_CONFIG is expanded from... aclocal.m4:5272: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached autoreconf: running: /usr/bin/autoheader --force configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from... aclocal.m4:1878: AC_LIBTOOL_COMPILER_OPTION is expanded from... aclocal.m4:6086: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... aclocal.m4:3931: _LT_AC_LANG_C_CONFIG is expanded from... aclocal.m4:3930: AC_LIBTOOL_LANG_C_CONFIG is expanded from... aclocal.m4:1343: AC_LIBTOOL_SETUP is expanded from... aclocal.m4:1323: _AC_PROG_LIBTOOL is expanded from... aclocal.m4:1288: AC_PROG_LIBTOOL is expanded from... configure.ac:293: the top level configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:1923: AC_LIBTOOL_LINKER_OPTION is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4008: _LT_AC_LANG_CXX_CONFIG is expanded from... aclocal.m4:4007: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... aclocal.m4:3067: _LT_AC_TAGCONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:5171: _LT_AC_LANG_F77_CONFIG is expanded from... aclocal.m4:5170: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:5273: _LT_AC_LANG_GCJ_CONFIG is expanded from... aclocal.m4:5272: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached autoreconf: running: automake --add-missing --copy --force-missing configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from... aclocal.m4:1878: AC_LIBTOOL_COMPILER_OPTION is expanded from... aclocal.m4:6086: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... aclocal.m4:3931: _LT_AC_LANG_C_CONFIG is expanded from... aclocal.m4:3930: AC_LIBTOOL_LANG_C_CONFIG is expanded from... aclocal.m4:1343: AC_LIBTOOL_SETUP is expanded from... aclocal.m4:1323: _AC_PROG_LIBTOOL is expanded from... aclocal.m4:1288: AC_PROG_LIBTOOL is expanded from... configure.ac:293: the top level configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:1923: AC_LIBTOOL_LINKER_OPTION is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4008: _LT_AC_LANG_CXX_CONFIG is expanded from... aclocal.m4:4007: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... aclocal.m4:3067: _LT_AC_TAGCONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:5171: _LT_AC_LANG_F77_CONFIG is expanded from... aclocal.m4:5170: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:5273: _LT_AC_LANG_GCJ_CONFIG is expanded from... aclocal.m4:5272: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:293: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached autoreconf: Leaving directory
.'
participants (2)
-
Christian Wiese
-
Nikolaos Milas