aMule Forum

English => Compilation problems => Topic started by: Yevitan on April 21, 2006, 10:12:51 PM

Title: error after mkFileSum
Post by: Yevitan on April 21, 2006, 10:12:51 PM
Code: [Select]
h12# pwd
/usr/home/yevitan/aMule-2.1.0
h12# make
make  all-recursive
Making all in m4
Making all in docs
Making all in man
Making all in src
Making all in libs
Making all in ec
gcc -o mkFileSum
gcc: No input files specified
*** Error code 1

Stop in /usr/home/yevitan/aMule-2.1.0/src/libs/ec.
*** Error code 1

Stop in /usr/home/yevitan/aMule-2.1.0/src/libs.
*** Error code 1

Stop in /usr/home/yevitan/aMule-2.1.0/src.
*** Error code 1

Stop in /usr/home/yevitan/aMule-2.1.0.
*** Error code 1

Stop in /usr/home/yevitan/aMule-2.1.0.
h12#


already done :
pkg_add -r wxgtk2
and wxBASE 2.6.3 installed


here the log after
./configure --enable-amulecmd --enable-webserver --disable-monolithic --enable-amule-daemon

Code: [Select]
 Configure script has finished system check.

  Configured aMule 2.1.0 for 'i386-unknown-freebsd6.0'.

  aMule enabled options:

  **** aMule Core ****
  Prefix where aMule should be installed?                    /usr/local
  Should aMule be compiled with i18n support?                yes
  Should aMule be compiled in debug mode?                    yes
  Should aMule be compiled with profiling?                   no
  Should aMule be compiled with optimizations?               no
  Should aMule monolithic application be built?              no
  Should aMule daemon version be built?                      yes
  Should aMule remote gui be built? (EXPERIMENTAL)           no
  Crypto++ library/headers style?                            embedded

  **** aMule TextClient ****
  Should aMule Command Line Client be built?                 yes

  **** aMule WebServer ****
  Should aMule WebServer be built?                           yes

  **** aMule ED2K Links Handler ****
  Should aMule ED2K Links Handler be built?                  yes

  **** aMuleLinkCreator ****
  Should aMuleLinkCreator GUI version (alc) be built?        no
  Should aMuleLinkCreator for console (alcc) be built?       no

  **** aMule Statistics ****
  Should C aMule Statistics (CAS) be built?                  no
  Should aMule GUI Statistics (wxCas) be built?              no

  **** General Libraries and Tools ****
  Should ccache support be enabled?                          no
  Libraries aMule will use to build:
                                       wxWidgets             2.6.3
                                       crypto++              embedded
                                       libpng                1.2.8
                                       libgd                 Not detected
                                       zlib                  1.2.2
Title: Re: error after mkFileSum
Post by: Gerd78 on April 21, 2006, 10:32:27 PM
The build system does not work with BSD make because it does some things that only GNU make understands. GNU make is installed as "gmake" on FreeBSD, so you have to execute "gmake" instead of "make". Running ./configure again is not necessary.
Title: Re: error after mkFileSum
Post by: wuischke on April 21, 2006, 10:36:32 PM
Just BTW: You should rather compile aMule 2.1.1, because there are some bugs fixed which *may* occur in 2.1.0
Title: Re: error after mkFileSum
Post by: Yevitan on April 21, 2006, 11:01:49 PM
thanks for gmake .. installed and now will try to install amule :)))