Find the answer to your Linux question:
Results 1 to 6 of 6
Hello ppl I'm trying to install a program on Fedora 12. I am not so good with linux yet. Anyways so as I enter the command in the source directory ...
  1. #1
    Just Joined!
    Join Date
    May 2008
    Posts
    34

    [SOLVED] Dependency Help!

    Hello ppl
    I'm trying to install a program on Fedora 12. I am not so good with linux yet.
    Anyways so as I enter the command in the source directory of this program. The following is generated:
    Code:
    [root@189066 verlihub-0.9.8e-r2]# ./configure
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    ***
    *** Checking compiler...
    ***
    
    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 `/root/verlihub-0.9.8e-r2':
    configure: error: C++ compiler cannot create executables
    See `config.log' for more details.
    Can someone please tell me how to install the missing stuff? via rpms or download sources and compile? I would really appreciate the help.

  2. #2
    Just Joined!
    Join Date
    May 2008
    Posts
    34
    Ok I have resolved the issue mentioned above.
    But new problem after a few lines:
    Code:
    checking for zlib.h... no
    configure: error: Zlib header (zlib.h) not found. Tor requires zlib to build. You may need to install a zlib development package.
    now what?

  3. #3
    Just Joined!
    Join Date
    May 2008
    Posts
    34
    I figured the issure above as well. Needed zlib-devel package.

    Now the only problem is that after I do configure it asks me to install GeoIP and I download the source for that and finished ./configure but when I try to do "make".
    -bash-4.1# cd GeoIP-1.4.6
    -bash-4.1# make
    -bash: make: command not found
    !?

  4. #4
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    Quote Originally Posted by 5pyd3r View Post
    I figured the issure above as well. Needed zlib-devel package.

    Now the only problem is that after I do configure it asks me to install GeoIP and I download the source for that and finished ./configure but when I try to do "make".
    -bash-4.1# cd GeoIP-1.4.6
    -bash-4.1# make
    -bash: make: command not found
    !?
    You can get all the basic development tools necessary for compiling software, including make, as so

    Code:
    su -
    yum groupinstall 'Development Tools'

  5. #5
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    checking for zlib.h... no
    configure: error: Zlib header (zlib.h) not found. Tor requires zlib to build. You may need to install a zlib development package.
    Noticed you're looking to build tor. It's preferable to use binaries already built for your distribution. The Tor project provides pre-built packages for Fedora.

    Tor: CentOS/Fedora/OpenSUSE Instructions

  6. #6
    Just Joined!
    Join Date
    May 2008
    Posts
    34
    thx boss i just did more research and found the solution..exactly what you said!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...