:: what is
please take a look at this.
:: case
:: solution
this example for resolve on compiling mysql package. install libtool packages from repository and run liboolize command line on the package:
:: links
+ GoogleLinux
please take a look at this.
:: case
/bin/rm: cannot remove `libtoolT': No such file or directoryif you get some error message like that when you compiling some application from source you can do like this for resolve on it.
:: solution
this example for resolve on compiling mysql package. install libtool packages from repository and run liboolize command line on the package:
linux:~/download/mysql-5.1.37 # yum install libtoolafter that you can recompile and install your package from source.
linux:~/download/mysql-5.1.37 # libtoolize --force
linux:~/download/mysql-5.1.37 # autoconf
and/or
linux:~/download/mysql-5.1.37 # autoreconf
:: links
+ GoogleLinux
Thanks , I am able to resolve my tomcat connector issue with this.
ReplyDeleteUsing centos 5.5 and MySQL 5.1.49, I get the following where RUN is the command I run and RESPONSE is the response. Blank responses are considered a success..
ReplyDeleteRUN: libtoolize --force
RESPONSE:Using `AC_PROG_RANLIB' is rendered obsolete by `AC_PROG_LIBTOOL'
You should update your `aclocal.m4' by running aclocal.
RUN: autoconf
RESPONSE: aclocal.m4:20: warning: this file was generated for autoconf 2.63.
You have another version of autoconf. It may work, but is not guaranteed to.
If you have problems, you may need to regenerate the build system entirely.
To do so, use the procedure documented by the package, typically `autoreconf'.
configure.in:22: error: Autoconf version 2.60 or higher is required
aclocal.m4:8464: AM_INIT_AUTOMAKE is expanded from...
configure.in:22: the top level
autom4te: /usr/bin/m4 failed with exit status: 63
RUN: aclocal
RESPONSE:
RUN: libtoolize --force
RESPONSE: Using `AC_PROG_RANLIB' is rendered obsolete by `AC_PROG_LIBTOOL'
RUN: autoconf
RESPONSE:
RUN: ./configure --prefix=/usr/local/mysql --with-mysqld-libs
RESPONSE:
RUN: make
RESPONSE: cd . && /bin/sh /usr/local/src/mysql-5.1.49/missing --run automake-1.9 --foreign
client/Makefile.am: required file `./compile' not found
make: *** [Makefile.in] Error 1
I have the same problem and it've solved rhel5 and this solucion solved the problem:
ReplyDelete$: libtoolize --force
$: autoconf
$: autoreconf
I was still getting the "rm libtoolT" error, even after "libtoolize --force; autoconf; autoreconf"
ReplyDeleteGot it to go away with "touch libtoolT" in the source directory.
Aleksey