Asterisk(*) installation fails

Im trying to install Asterisk 1.6.1.0 in a VMWare machine, running Fedora:
Fedora 10 Desktop Edition
but when entering make install, it always fail at the same point, I run make:

±-------- Asterisk Build Complete ---------+

  • Asterisk has successfully been built, and +
  • can be installed by running: +
  •                                       +
    
  •            make install               +
    

±------------------------------------------+

[root@asteriskvnt asterisk-1.6.1.0]# make install
menuselect/menuselect --check-deps menuselect.makeopts
Generating embedded module rules …
if [ x/usr/bin/id -un = xroot ]; then CFLAGS=" -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -g3 -march=i686 " sh build_tools/mkpkgconfig /usr/lib/pkgconfig; fi
mkdir -p /var/lib/asterisk/static-http
for x in static-http/; do
/usr/bin/install -c -m 644 $x /var/lib/asterisk/static-http ;
done
if [ -d doc/tex/asterisk ] ; then
mkdir -p /var/lib/asterisk/static-http/docs ;
for n in doc/tex/asterisk/
; do
/usr/bin/install -c -m 644 $n /var/lib/asterisk/static-http/docs ;
done
fi
mkdir -p /var/lib/asterisk/images
for x in images/*.jpg; do
/usr/bin/install -c -m 644 $x /var/lib/asterisk/images ;
done
mkdir -p /var/lib/asterisk/agi-bin
make -C sounds install
make[1]: Entering directory `/asterisk-1.6.1.0/sounds’



*** You must have either wget or fetch to be ***
*** able to automatically download and install ***
*** the requested sound packages. ***


*** Please install one of these, or remove any ***
*** extra sound package selections in ***
*** menuselecct before installing Asterisk. ***



make[1]: *** [have_download] Error 1
make[1]: Leaving directory `/asterisk-1.6.1.0/sounds’
make: *** [datafiles] Error 2

Wget is installed as well as fetch, server is behind a proxy, for yum I actually configure the proxy option, but not sure which logs or what I can do.

Once you install wget do ‘make clean’ and ‘./configure’ again since it needs to reconfigure the path for the newly installed wget. Then ‘make’ and ‘make install’ again

cheers