LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   libtoolize (https://www.linuxquestions.org/questions/linux-newbie-8/libtoolize-4175425759/)

Sharath Ravi 09-05-2012 06:48 AM

libtoolize
 
hi,

When I am compiling filezilla source code i am getting an error while running ./autogen.sh 2.5

Checking for libtoolize >= 1.4 ... not found

libtoolize could not be found. On some systems libtoolize might be installed but
has a suffix with the version number, for example ;E-1.4.0.
If that is the case, create a symlink to libtoolize.



If i do yum search libtoolize i get a reply to install libedit.i686

libedit is already installed in my machine n is a new version

Package libedit-2.11-4.20080712cvs.1.el6.i686 already installed and latest version
Nothing to do


how can i resolve this issue? Please help

Thanks

knudfl 09-05-2012 07:05 AM

Please use : yum provides */libtoolize
.. to find the package that provides libtoolize.

# yum install libtool

Sharath Ravi 09-05-2012 11:51 PM

Thanks this is done...After this step when i run ../configure it says

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl.exe... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking for C++ compiler default output file name...
configure: error: in `/home/sharath/filezilla-3.5.3/compile':
configure: error: C++ compiler cannot create executables
See `config.log' for more details.


Any suggestion how to go about it..

Thanks

knudfl 09-06-2012 02:57 AM

May be all the "Development tools" are missing on your OS ?

Please do : # yum groupinstall "Development tools"


Then you will also get the package 'gcc-c++' installed,
... to get : /usr/bin/ g++ c++

.

Sharath Ravi 09-06-2012 04:27 AM

Thanks everything u say is working

now new error while running ../configure

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking whether gcc and cc understand -c and -o together... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1966080
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for ar... ar
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking dependency style of g++... (cached) gcc3
checking how to run the C++ preprocessor... g++ -E
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether compiler supports -std=gnu++0x... yes
checking for whether we can include <unordered_map>... yes
checking for wx-config... no
configure: error:
wxWidgets must be installed on your system
but either the wx-config script couldn't be found or
no compatible wxWidgets configuration has been insalled.

Compatible wxWidgets configurations are the unicode builds
of wxGTK, wxMac and wxMSW.

Please check that wx-config is in path, the directory
where wxWidgets libraries are installed (returned by
'wx-config --libs' command) is in LD_LIBRARY_PATH or
equivalent variable and wxWidgets version is 2.8.12 or above.

Can u please help me on this too....

knudfl 09-06-2012 05:13 AM

Required : wxGTK-devel, which is from "Extra Packages for Enterprise .."

EPEL > https://fedoraproject.org/wiki/EPEL
>>> http://ftp.crc.dk/fedora-epel/6/i386...6-7.noarch.rpm
# rpm -Uvh epel-release-6-7.noarch.rpm

# yum install wxGTK-devel

But then again, you can also get 'filezilla' from EPEL :
# yum install filezilla

.

Sharath Ravi 09-06-2012 05:35 AM

# yum install filezilla
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: mirrors.sin3.sg.voxel.net
* extras: mirrors.sin3.sg.voxel.net
* updates: mirrors.sin3.sg.voxel.net
Setting up Install Process
No package filezilla available.
Error: Nothing to do

No filezilla available..And also

# yum search wxGTK-devel
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: mirrors.sin3.sg.voxel.net
* extras: mirrors.sin3.sg.voxel.net
* updates: mirrors.sin3.sg.voxel.net
Warning: No matches found for: wxGTK-devel
No Matches found

knudfl 09-06-2012 06:09 AM

Quote:

* base: mirrors.sin3.sg.voxel.net
* extras: mirrors.sin3.sg.voxel.net
* updates: mirrors.sin3.sg.voxel.net
No 'epel' : Please do # rpm -Uvh epel-release-6-7.noarch.rpm

Sharath Ravi 09-06-2012 07:29 AM

Done.. Thanks

Now it says

configure: error: idna.h not found which is part of GNU libidn.

How to go about...

Thanks a ton for ur patience

knudfl 09-06-2012 08:28 AM

Finding a package name for <file> :

yum provides */idna.h
... reply : libidn-devel

# yum install libidn-devel


You can also do # yum install filezilla
... to install the filezilla package.

.

Sharath Ravi 09-07-2012 02:43 AM

hello,

Thanks again need ur advice even more...as i new in linux

This yum install filezilla is not working. Can u brief me this step

The other thing worked
yum provides */idna.h
... reply : libidn-devel

# yum install libidn-devel

Now getting this

checking for LIBGNUTLS... no
checking for libgnutls-config... no
checking for libgnutls - version >= 2.8.3... no
*** The libgnutls-config script installed by LIBGNUTLS could not be found
*** If LIBGNUTLS was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the LIBGNUTLS_CONFIG environment variable to the
*** full path to libgnutls-config.
configure: error:
***
*** libgnutls 2.8.3 or greater was not found. You may want to get it from
*** ftp://ftp.gnutls.org/pub/gnutls/

Need ur advice

knudfl 09-07-2012 03:19 AM

# yum search gnutls

# yum install gnutls-devel



? Which are the errors you get with : # yum install filezilla
The package is present in epel.repo :
http://dl.fedoraproject.org/pub/epel...filezilla.html

.

Sharath Ravi 09-07-2012 05:28 AM

Hi again,


# yum install filezilla
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: ftp.iitm.ac.in
* extras: ftp.iitm.ac.in
* updates: ftp.iitm.ac.in
Setting up Install Process
No package filezilla available.
Error: Nothing to do

This is the error

Now


checking tinyxml.h usability... no
checking tinyxml.h presence... no
checking for tinyxml.h... no
configure: error: tinyxml.h not found. If you do not have TinyXML installed as system library, you can use the copy of TinyXML distributed with FileZilla by passing --with-tinyxml=builtin as argument to configure.


Please help me out

Sharath Ravi 09-07-2012 07:27 AM

Hey thank u very much....

issue resolved....


All times are GMT -5. The time now is 05:09 AM.