patch #6571
[mldonkey.git] / config / configure.in
blob9cce502420d2de41c8ac29553ed9613261281917
2 # **********                                                                                  **********
3 # **********                            Autoconf, configure internals                         **********
4 # **********                                                                                  **********
6 AC_REVISION(norev)
7 AC_PREREQ(2.53)
8 AC_INIT(Makefile.config.in)
9 AC_CONFIG_HEADER(config.h)
11 CONFIGURE_RUN=yes
12 CONFIGURE_ARGUMENTS=$ac_configure_args
13 echo "Arguments to configure: $CONFIGURE_ARGUMENTS"
15 cd ..
16 SOURCE_DIR=`pwd`
17 cd config
19 # **********                                                                                  **********
20 # **********                                   MLDonkey version                               **********
21 # **********                                                                                  **********
23 MAJOR_VERSION=2
24 MINOR_VERSION=9
25 SUB_VERSION=5   # range 0-7 due to eMule limitations
27 # **********                                                                                  **********
28 # **********                                  check for C compiler                            **********
29 # **********                                                                                  **********
31 AC_PROG_CC
32 CC_VERSION=`$CC -dumpversion`
33 AC_EXEEXT
34 AC_PROG_CPP
36 # **********                                                                                  **********
37 # **********                                    System checks                                 **********
38 # **********                                                                                  **********
40 AC_CANONICAL_HOST
42 OS_FILES=unix
43 OS_FILES2=unix
44 SYSTEM=unknown
45 FIX_BROKEN_CPP=
46 case $host in
47   *mingw*)
48     SYSTEM=mingw
49     OS_FILES=mingw
50     OS_FILES2=mingw
51     PTHREAD_LIBS="-lpthreadGC2 -lwsock32"
52     PTHREAD_CFLAGS="-DPTW32_STATIC_LIB"
53     AC_MSG_CHECKING(for mingw-runtime version)
54       
55 cat >mingw_rt_ver.c <<'END'
56 #include <stdio.h>
57 #include <_mingw.h>
58 main(int argc, char *argv[[]])  {
60 int required_runtime_major=3;       /**********     change required mingw-runtime   **********/
61 int required_runtime_minor=10;      /**********              version here           **********/
63 #ifdef __MINGW32_MAJOR_VERSION
64 #  ifdef __MINGW32_MINOR_VERSION
65      switch(argv[[1]][[0]]) {
66        case 'x':
67          printf("%d.%d", __MINGW32_MAJOR_VERSION, __MINGW32_MINOR_VERSION);
68          break;
69        case 'y':
70          if ((__MINGW32_MAJOR_VERSION == required_runtime_major && __MINGW32_MINOR_VERSION < required_runtime_minor) || 
71              (__MINGW32_MAJOR_VERSION < required_runtime_major)) {
72            printf("no");
73            break; }
74          else {
75            printf("yes");
76            break; }
77        case 'z':
78          printf("%d.%d", required_runtime_major, required_runtime_minor);
79          break;
80      }
81      return 0;
82 #  else
83    printf("__MINGW32_MINOR_VERSION not defined in _mingw.h");
84    return 0;
85 #  endif
86 #else
87  printf("__MINGW32_MAJOR_VERSION not defined in _mingw.h");
88  return 0;
89 #endif
91 END
93     $CC -o mingw_rt_ver ./mingw_rt_ver.c
94     MINGW_RT_VER="`./mingw_rt_ver x`"
95     MINGW_RT_VER_OK="`./mingw_rt_ver y`"
96     MINGW_RT_VER_REQ="`./mingw_rt_ver z`"
97     rm -f mingw_rt_ver mingw_rt_ver.*
98     AC_MSG_RESULT($MINGW_RT_VER)
99     if test "$MINGW_RT_VER_OK" = "no"; then
100       echo "********  mingw-runtime version $MINGW_RT_VER_REQ is required  *********" 1>&2;
101       exit 1
102     fi
103     ;;
104   *cygwin*)
105     SYSTEM=cygwin
106     OS_FILES2=cygwin
107     ;;
108   *freebsd*|*dragonfly*)
109     SYSTEM=freebsd
110     CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
111     LDFLAGS="${LDFLAGS} -L/usr/local/lib"
112     ;;
113   *openbsd*)
114     SYSTEM=openbsd
115     CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
116     LDFLAGS="${LDFLAGS} -L/usr/local/lib"
117     ;;
118   *netbsd*)
119     SYSTEM=netbsd
120     ;;
121   *linux*)
122     SYSTEM=linux
123     ;;
124   *solaris*)
125     SYSTEM=solaris
126     ;;
127   *morphos*|*amigaos*)
128     SYSTEM=morphos
129     ;;
130   *aix*)
131     SYSTEM=aix
132     ;;
133   *beos*)
134     SYSTEM=beos
135     ;;
136   *osf*)
137     SYSTEM=osf
138     ;;
139   *irix*)
140     SYSTEM=irix
141     ;;
142   *hppa*|*hpux*)
143     SYSTEM=hpux
144     ;;
145   *darwin*|*rhapsody*|*macosx*)
146     SYSTEM=macos
147     AC_CHECK_PROG(SED, sed, sed)
148     if test "$ac_cv_prog_SED" = "sed"; then
149       FIX_BROKEN_CPP="| sed -n '/^\#pragma/!p'"
150     else
151       AC_CHECK_PROG(GREP, grep, grep)
152       if test "$ac_cv_prog_GREP" = "grep"; then
153         FIX_BROKEN_CPP="| grep -v '^\#pragma'"
154       fi
155     fi
156     if test "xFIX_BROKEN_CPP" = "x"; then
157       echo "Apple cpp produces broken files, your system lacks sed or grep to fix it"
158       exit 1
159     fi
160     ;;
161 esac
162 if test "x$SYSTEM" = "xunknown"; then
163   echo "Unknown build system, please report to the MLDonkey development team at http://mldonkey.sourceforge.net/forums/"
164   exit 1
167 case "$host" in
168   alpha*-*-osf*)                arch=alpha; system=digital;;
169   alpha*-*-linux*)              arch=alpha; system=linux;;
170   alpha*-*-freebsd*)            arch=alpha; system=freebsd;;
171   alpha*-*-netbsd*)             arch=alpha; system=netbsd;;
172   alpha*-*-openbsd*)            arch=alpha; system=openbsd;;
173   sparc-*-sunos4.*)             arch=sparc; system=sunos;;
174   sparc-*-solaris2.*)           arch=sparc; system=solaris;;
175   sparc-*-*bsd*)                arch=sparc; system=bsd;;
176   sparc-*-linux*)               arch=sparc; system=linux;;
177   i?86-*-linux*)           arch=i386; system=linux;;
178   i386-*-*bsd*)            arch=i386; system=bsd;;
179   i486-*-*bsd*)            arch=i486; system=bsd;;
180   i586-*-*bsd*)            arch=i586; system=bsd;;
181   i686-*-*bsd*)            arch=i686; system=bsd;;
182   i?86-*-nextstep*)        arch=i386; system=nextstep;;
183   i?86-*-solaris*)         arch=i386; system=solaris;;
184   i?86-*-beos*)            arch=i386; system=beos;;
185   i?86-*-cygwin*)          arch=i386; system=cygwin;;
186   mips-*-irix6*)                arch=mips; system=irix;;
187   hppa1.1-*-hpux*)              arch=hppa; system=hpux;;
188   hppa1.1-*-nextstep*)          arch=hppa; system=nextstep;;
189   rs6000-*-aix*)                arch=power; model=rs6000; system=aix;;
190   powerpc-*-aix*)               arch=power; model=ppc; system=aix;;
191   powerpc-*-linux*)             arch=power; model=ppc; system=elf;;
192   powerpc-*-rhapsody*)          arch=power; model=ppc; system=rhapsody;;
193   powerpc-*-darwin*)            arch=power; model=ppc; system=rhapsody;;
194   arm*-*-linux*)                arch=arm; system=linux;;
195   ia64-*-linux*)                arch=ia64; system=linux;;
196 esac
198 MD4ARCH=$arch
199 case $host in
200   i386-pc-linux*|i386-*-*bsd*) MD4COMP=as; MD4ARCH=i386;;
201   i486-pc-linux*|i486-*-*bsd*) MD4COMP=as; MD4ARCH=i486;;
202   i586-pc-linux*|i586-*-*bsd*) MD4COMP=as; MD4ARCH=i586;;
203   i686-pc-linux*|i686-*-*bsd*) MD4COMP=as; MD4ARCH=i686;;
204   i386-pc-mingw32*) MD4COMP=cc; MD4ARCH=i386;;
205   i486-pc-mingw32*) MD4COMP=cc; MD4ARCH=i486;;
206   i586-pc-mingw32*) MD4COMP=cc; MD4ARCH=i586;;
207   i686-pc-mingw32*) MD4COMP=cc; MD4ARCH=i686;;
208   *) MD4COMP=cc;;
209 esac
211 ARCH=$arch
213 # **********                                                                                  **********
214 # **********               Parse checkout date (CVS) or revision (SVN) if available           **********
215 # **********                                                                                  **********
217 if test -d .svn; then
218   AC_MSG_NOTICE(checking SVN revision)
219   AC_CHECK_PROG(SVNVERSION,svnversion,svnversion)
220   if test "$ac_cv_prog_SVNVERSION" = "svnversion"; then
221     SUB_VERSION3="SVN"
222     SCM_VERSION=`svnversion -n .`
223   else AC_MSG_NOTICE(cannot checking SVN revision... no SVNVERSION)
224     SCM_VERSION="cannot find out SVN revision (no SVNVERSION)"  
225   fi     
228 if test -f ./CVS/Entries ; then
229   AC_MSG_NOTICE(checking CVS checkout date)
230   AC_CHECK_PROGS(STAT, stat gstat, stat)
231   if [ test "$ac_cv_prog_STAT" = "stat" ] || [ test "$ac_cv_prog_STAT" = "gstat" ]; then
232     AC_CHECK_PROG(SED, sed, sed)
233     if test "$ac_cv_prog_SED" = "sed"; then
234       AC_CHECK_PROG(CUT, cut, cut)
235       if test "$ac_cv_prog_CUT" = "cut"; then
236         SUB_VERSION3="CVS"
237         if [ test "$SYSTEM" = "freebsd"] || [ test "$SYSTEM" = "netbsd"] || ( [ test "$SYSTEM" = "macos" ] && [ test "$ac_cv_prog_STAT" != "gstat" ] ); then
238           SCM_VERSION=`$STAT -f "%Sm" ./CVS/Entries | $SED -e 's/\(.*\) \(.*\) \(.*\) \(.*\)/\4-\1-\2 \3/'`
239         else
240         if [ test "$SYSTEM" = "openbsd"]; then
241           AC_CHECK_PROG(GREP, grep, grep)
242           if test "$ac_cv_prog_GREP" = "grep"; then
243             SCM_VERSION=`$STAT -f %a ./CVS/Entries | $GREP -v Entries | $SED -e 's/\(.*\) \(.*\) \(.*\) \(.*\)/\1-\2-\4 \3/'`
244           fi
245         else
246         if [ test "$SYSTEM" = "mingw"] || [ test "$SYSTEM" = "cygwin"]; then
247           AC_CHECK_PROG(GREP, grep, grep)
248           if test "$ac_cv_prog_GREP" = "grep"; then
249             SCM_VERSION=`$STAT ./CVS/Entries  | $GREP Modify | $SED -e 's/\(.*\) \(.*\) \(.*\) \(.*\) \(.*\)/\5-\2-\3 \4/'`
250           fi
251         else
252           SCM_VERSION=`$STAT -Lc %y ./CVS/Entries | $SED -e 's#\.[0-9]*##' | $CUT -c 1-19`
253         fi  #if [ test "$SYSTEM" = "mingw"] || ...
254         fi  #if [ test "$SYSTEM" = "openbsd"]
255         fi  #if [ test "$SYSTEM" = "freebsd"] || ...
256       else
257         AC_MSG_NOTICE(cannot checking CVS checkout date... no CUT)
258         SCM_VERSION="cannot find out SCM Version (no CUT)"
259       fi
260     else
261       AC_MSG_NOTICE(cannot checking CVS checkout date... no SED)
262       SCM_VERSION="cannot find out SCM Version (no SED)"
263     fi
264   else
265     AC_MSG_NOTICE(cannot checking CVS checkout date... no STAT)
266     SCM_VERSION="cannot find out SCM Version (no STAT)"
267   fi
270 # **********                                                                                  **********
271 # **********             build MLDonkey version, Required Ocaml and LablGTK versions          **********
272 # **********                                                                                  **********
274 MLDONKEY_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$SUB_VERSION
275 if test -f ./subrelease; then
276   MLDONKEY_VERSION=$MLDONKEY_VERSION`cat ./subrelease`
278 if test ! -z "$SUB_VERSION3"; then
279   MLDONKEY_VERSION=$MLDONKEY_VERSION.$SUB_VERSION3
282 REQUIRED_OCAML=3.10.2
283 DOWNLOAD_OCAML_MAJOR=3.10
284 DOWNLOAD_OCAML=3.10.2
286 REQUIRED_LABLGTK=1.2.7
288 touch install-sh
290 LABLGTK_NAME=lablgtk
292 # **********                                                                                  **********
293 # **********                    Network and Feature configure switch variables                **********
294 # **********                                                                                  **********
296 # **********   currently not working Networks, can't be enabled
298 SOULSEEK=no
299 OPEN_NAPSTER=no
300 OPENFT=no
302 # **********   working Networks, enabled by default
304 DONKEY=yes
305 BITTORRENT=yes
306 GNUTELLA=no
307 GNUTELLA2=no
308 FASTTRACK=yes
309 FILETP=yes
310 DIRECT_CONNECT=yes
312 # **********   predefined configure variations
314 MULTINET=yes
315 MINIMUM=no
317 # **********   Features, enabled by default
319 DONKEY_SUI=yes
320 DONKEY_SUI_FILE=DonkeySui2
321 GD=yes
322 BZIP2=yes
323 MAGIC=yes
324 ICONV=yes
325 USE_PTHREAD=yes
327 # **********
329 BATCH=no
330 FORCE_OCAML=no
331 FORCE_MINGW=no
332 PROFILE=no
333 DEBUG=no
334 GUI=no
335 CHECKBOUNDS=false
337 # **********                                                                                  **********
338 # **********                Network and Feature configure switches and dependency             **********
339 # **********                                                                                  **********
341 AC_ARG_ENABLE(multinet,      [  --disable-multinet      allows you to only compile support for eDonkey (incl. Overnet and Kademlia)], [MULTINET="$enableval"])
342 AC_ARG_ENABLE(minimum,       [  --enable-minimum        compile MLDonkey with minimum features and Networks (eDonkey, iconv and thread enabled)], [MINIMUM="$enableval"])
343 AC_ARG_ENABLE(minimum,       [  --enable-minimum=all    disable all optional features and Networks excepting eDonkey], [MINIMUM="$enableval"])
345 if [ test ! "$MULTINET" = "yes" ] || [ test "$MINIMUM" = "yes" ] || [ test "$MINIMUM" = "all" ]; then
346   GNUTELLA=no
347   GNUTELLA2=no
348   FASTTRACK=no
349   DIRECT_CONNECT=no
350   FILETP=no
351   BITTORRENT=no
353 if [ test "$MINIMUM" = "yes" ] || [ test "$MINIMUM" = "all" ]; then
354   DONKEY_SUI=no
355   GD=no
356   BZIP2=no
357   MAGIC=no
359 if [ test "$MINIMUM" = "all" ]; then
360   USE_PTHREAD=no
361   ICONV=no
364 #AC_ARG_ENABLE(soulseek,      [  --disable-soulseek      allows you to remove support for SoulSeek], [SOULSEEK="$enableval"])
365 #AC_ARG_ENABLE(opennap,       [  --disable-opennap       allows you to remove support for Open Napster], [OPEN_NAPSTER="$enableval"])
366 AC_ARG_ENABLE(directconnect, [  --disable-directconnect allows you to remove support for Direct Connect], [DIRECT_CONNECT="$enableval"])
367 #AC_ARG_ENABLE(openft,        [  --disable-openft        allows you to remove support for OpenFT], [OPENFT="$enableval"])
369 AC_ARG_ENABLE(donkey,        [  --disable-donkey        allows you to remove support for eDonkey], [DONKEY="$enableval"])
370 AC_ARG_ENABLE(donkeysui,     [  --disable-donkeysui     allows you to remove support for eMule SecureUserIdent], [DONKEY_SUI="$enableval"])
371 AC_ARG_ENABLE(bittorrent,    [  --disable-bittorrent    allows you to remove support for Bittorent], [BITTORRENT="$enableval"])
372 AC_ARG_ENABLE(filetp,        [  --disable-filetp        allows you to remove support for fileTP], [FILETP="$enableval"])
373 AC_ARG_ENABLE(gnutella,      [  --disable-gnutella      allows you to remove support for Gnutella], [GNUTELLA="$enableval"])
374 AC_ARG_ENABLE(gnutella2,     [  --disable-gnutella2     allows you to remove support for Gnutella2], [GNUTELLA2="$enableval"])
375 AC_ARG_ENABLE(fasttrack,     [  --disable-fasttrack     allows you to remove support for FastTrack], [FASTTRACK="$enableval"])
377 AC_ARG_ENABLE(batch,         [  --enable-batch          reply YES to all queries in this script], [BATCH="$enableval"])
378 AC_ARG_ENABLE(force-ocaml,   [  --enable-force-ocaml    force usage of self-compiled Ocaml], [FORCE_OCAML="$enableval"])
379 AC_ARG_ENABLE(ocamlver,      [  --enable-ocamlver=VER   force usage of specific Ocaml version (3.08.1|CVS), ], [REQUIRED_OCAML="$enableval"])
380 AC_ARG_ENABLE(mingw,         [  --enable-mingw          forces compilation with MINGW on Cygwin], [FORCE_MINGW="$enableval"])
381 AC_ARG_ENABLE(checks,        [  --enable-checks         force mldonkey to perform bound checks on array/string access], [CHECKBOUNDS="$enableval"])
382 if test "$CHECKBOUNDS" = "yes"; then
383   CHECKBOUNDS=true
386 AC_ARG_ENABLE(profile,       [  --enable-profile        allows you to profile mlnet using gprof], [PROFILE="$enableval"])
387 AC_ARG_ENABLE(debug,         [  --enable-debug          allows you to compile mlnet with debug symbols], [DEBUG="$enableval"])
388 AC_ARG_ENABLE(gui,           [  --disable-gui           allows you to disable GUI build (default)], [GUI="$enableval"])
389 AC_ARG_ENABLE(gui,           [  --enable-gui=oldgui|newgui1|newgui2
390                           allows you to choose a GUI (default: newgui2 - is a GTK2 GUI, other GUIs use GTK1)], [GUI="$enableval"])
391 if test "$GUI" = "yes"; then
392   GUI=newgui2
394 if test ! "$GUI" = "newgui2"; then
395   if test ! "$GUI" = "newgui1"; then
396     if test ! "$GUI" = "oldgui"; then
397       GUI=no
398     fi
399   fi
402 AC_ARG_ENABLE(pthread,       [  --disable-pthread       allows you to disable pthread support in mldonkey, hurts performance!], [USE_PTHREAD="$enableval"])
403 AC_ARG_ENABLE(pthread-lib,   [  --enable-pthread-lib    legacy option], [USE_PTHREAD="$enableval"])
404 AC_ARG_ENABLE(iconv,         [  --disable-iconv         disable the use of iconv], [ICONV="$enableval"])
405 AC_ARG_ENABLE(gd,            [  --disable-gd            disable the use of gd], [GD="$enableval"])
406 AC_ARG_ENABLE(bzip2,         [  --disable-bzip2         disable the use of bzip2], [BZIP2="$enableval"])
407 AC_ARG_ENABLE(magic,         [  --disable-magic         disable the use of libmagic (GNU file)], [MAGIC="$enableval"])
409 if test "$FORCE_MINGW" = "yes"; then
410     CC="$CC -mno-cygwin"
411     CPP="$CPP -mno-cygwin"
412     OS_FILES=mingw
413     OS_FILES2=mingw
414     SYSTEM=mingw
417 OCAML_PATH=
419 echo -e "\n--------------------------------"
420 echo "     Checking system tools."
421 echo "--------------------------------"
423 AC_PROG_RANLIB
424 AC_CHECK_PROG(GNU_MAKE, gmake, gmake)
425 AC_CHECK_PROG(GNU_MAKE, make, make)
427 if test "x$GNU_MAKE" != "x"; then
428   AC_MSG_CHECKING( [if $GNU_MAKE is GNU make] )
429   $GNU_MAKE --version > /dev/null 2>&1
430   if test "$?" != "0"; then
431     AC_MSG_RESULT([no])
432         AC_MSG_ERROR(GNU make not found)
433   else
434     AC_MSG_RESULT([yes])
435   fi
436 else
437   AC_MSG_ERROR(GNU make not found)
440 AC_CHECK_PROG(COMPRESS, bzip2, bzip2)
441 AC_CHECK_PROG(COMPRESS, gzip, gzip)
443 if test "$ac_cv_prog_COMPRESS" = "bzip2"; then
444    COMPRESS_EXT=bz2
445 else
446    COMPRESS_EXT=gz
449 AC_PATH_PROG(PERL, perl, perl)
450 AC_CHECK_PROG(RPMBUILD,rpmbuild,rpmbuild)
451 AC_CHECK_PROG(RPMBUILD,rpm,rpm)
453 AC_CHECK_PROG(WGET, wget, wget)
454 if test -z "$ac_cv_prog_WGET"; then
455   $CC -o wget wget.c || echo "Cannot compile wget.c"
456   AC_PATH_PROG(WGET, wget,,$SOURCE_DIR/config)
457   ac_cv_prog_WGET="$ac_cv_path_WGET"
459 WGET="$ac_cv_prog_WGET"
461 echo "----------------------------------------"
462 echo "     Checking system tools finished."
463 echo -e "----------------------------------------\n"
465 echo "--------------------------------"
466 echo "     Checking Ocaml compiler."
467 echo "--------------------------------"
469 CONFIG_DIR=$SOURCE_DIR/config
470 PATCH_DIR=$SOURCE_DIR/patches
471 LOCAL_DIR=$PATCH_DIR/local
472 BUILD_DIR=$PATCH_DIR/build
474 AC_ARG_ENABLE(local-prefix, [  --enable-local-prefix=DIR  allows you to specify where you want temporary tools to be installed (DIR must be absolute)], [LOCAL_DIR="$enableval"])
476 LOCAL=$LOCAL_DIR
477 LOCAL_OCAML=$LOCAL_DIR/bin
479 AC_PATH_PROG(OCAMLC,ocamlc.opt,"",[$LOCAL_DIR/bin:$PATH])
480 AC_CHECK_TOOL(OCAMLC,ocamlc,ocamlrun ocamlc)
481 AC_PATH_PROG(CAMLP4, camlp4,"",[$LOCAL_DIR/bin:$PATH])
483 BUILD_OCAML=no
484 if [ test -z "$OCAMLC" ] || [ test -z "$CAMLP4" ] || [ test "$REQUIRED_OCAML" = "CVS" ]; then
485    BUILD_OCAML=yes
486 else
487   OCAMLVERSION=`$OCAMLC -v | sed -n -e 's|.*version* *\(.*\)$|\1|p' `
488   case "$OCAMLVERSION" in
489     "$REQUIRED_OCAML"*|3.10.1*|3.10.0*|3.09.*|3.08.4*|3.08.3*) ;;
490     *)
491         echo "Need build"
492         BUILD_OCAML=yes
493         ;;
494   esac
497 if [ test "$BUILD_OCAML" = "yes" ] || [ test "$FORCE_OCAML" = "yes" ]; then
499   if [ test "$SYSTEM" = "mingw" ]; then
500     echo "********         Objective-Caml $REQUIRED_OCAML is required               *********" 1>&2;
501     echo "********     no valid Ocaml compiler found on your system        *********" 1>&2;
502     echo "********   on MinGW there is no possibility to let configure     *********" 1>&2;
503     echo "********   build the Ocaml compiler with the included script     *********" 1>&2;
504     echo "********    check http://mldonkey.sourceforge.net/Windows        *********" 1>&2;
505     echo "********   for instuctions how to compile Ocaml under MinGW      *********" 1>&2;
506     exit 1
507   else  
508     
509   echo "********  Objective-Caml $REQUIRED_OCAML is required  *********" 1>&2;
510   if [ test "$WGET" = "" ] && [ test "$REQUIRED_OCAML" != "CVS" ]; then
511     echo "********          wget is missing          *********" 1>&2;
512     echo "********       cannot download Ocaml       *********" 1>&2;
513     exit 1
514   fi
515   echo "*******  Check http://caml.inria.fr/  ********" 1>&2;
516   echo "Do you want this script to try to download and install ocaml"
517   echo "LOCALLY in mldonkey directory ?"
518   if test "$BATCH" = "no"; then read i <&1; else i=yes; fi
519   case "$i" in
520    y* | Y*)
521       cd $PATCH_DIR
522       if [ test "$REQUIRED_OCAML" = "CVS" ]; then
523         rm -rf $BUILD_DIR
524         mkdir -p $BUILD_DIR
525         cd $BUILD_DIR
526         cvs -d:pserver:anoncvs:""@camlcvs.inria.fr:/caml login
527         cvs -z3 -d:pserver:anoncvs@camlcvs.inria.fr:/caml co -P ocaml
528         cd ocaml
529       else
530         if test ! -f ocaml-"$REQUIRED_OCAML".tar.gz; then
531           echo Downloading ...
532           $WGET http://caml.inria.fr/pub/distrib/ocaml-"$DOWNLOAD_OCAML_MAJOR"/ocaml-"$REQUIRED_OCAML".tar.gz
533         fi
534         if test ! -f ocaml-"$REQUIRED_OCAML".tar.gz; then
535           $WGET http://caml.inria.fr/pub/distrib/ocaml-3.09/ocaml-"$REQUIRED_OCAML".tar.gz
536         fi
537         if test ! -f ocaml-"$REQUIRED_OCAML".tar.gz; then
538           $WGET http://caml.inria.fr/pub/distrib/ocaml-3.08/ocaml-"$REQUIRED_OCAML".tar.gz
539         fi
540         if test ! -f ocaml-"$REQUIRED_OCAML".tar.gz; then
541           echo "********        download Ocaml $REQUIRED_OCAML not successful, try do download it manually       *********" 1>&2;
542           echo "********        from http://caml.inria.fr/pub/distrib/                                   *********" 1>&2;
543           echo "********        and copy the tar.gz into $PATCH_DIR              *********" 1>&2;
544           exit 1
545         fi
547         echo Uncompressing ...
548         mkdir -p $BUILD_DIR
549         cd $BUILD_DIR
550         rm -rf ocaml-"$REQUIRED_OCAML"
551         gzip -cd $PATCH_DIR/ocaml-"$REQUIRED_OCAML".tar.gz | tar vxf -
552         cd ocaml-"$REQUIRED_OCAML"
553         if test -f $PATCH_DIR/ocaml-"$REQUIRED_OCAML".patch; then
554           echo Patching ...
555           patch -p1 < $PATCH_DIR/ocaml-"$REQUIRED_OCAML".patch
556         fi
557       fi
558       echo Configuring ...
559       ./configure -prefix $LOCAL_DIR -host $host -cc $CC
560       cd config
561       cp -f Makefile Makefile.old
562       sed "s/OTHERLIBRARIES=.*/OTHERLIBRARIES=unix dynlink num str bigarray threads/" Makefile.old > Makefile
563       cd ..
564       cp -f $PATCH_DIR/Makefile.ocamldoc ocamldoc/Makefile
565       echo Compiling ...
566       $GNU_MAKE world opt opt.opt
567       echo Installing ...
568       $GNU_MAKE install
569       if ! test -f $LOCAL_DIR/lib/ocaml/threads; then
570         if ! test -f $LOCAL_DIR/lib/ocaml/vmthreads; then
571           ln -s vmthreads  $LOCAL_DIR/lib/ocaml/threads
572         fi
573       fi
574       cd $BUILD_DIR
575       if [ test "$REQUIRED_OCAML" = "CVS" ]; then
576         rm -rf ocaml
577       else
578         rm -rf ocaml-"$REQUIRED_OCAML"
579       fi
580       cd $CONFIG_DIR
581       echo Ocaml locally installed for mldonkey
583       if test -f "$LOCAL_OCAML"/ocamlc.opt; then
584          OCAMLC=$LOCAL_OCAML/ocamlc.opt
585          ac_cv_prog_OCAMLC=$LOCAL_OCAML/ocamlc.opt
586       else
587       if test -f "$LOCAL_OCAML"/ocamlc; then
588          OCAMLC=$LOCAL_OCAML/ocamlc
589          ac_cv_prog_OCAMLC=$LOCAL_OCAML/ocamlc
590       else
591         echo "Ocaml installation failed"; exit 1
592       fi
593       fi
594       ;;
595    *)  exit 1;;
596   esac
597   fi
600 if test "$OCAMLC" = "$LOCAL_OCAML"/ocamlc.opt ; then
601   OCAML_PATH="$LOCAL_OCAML"/
602   OCAMLOPT=$LOCAL_OCAML/ocamlopt.opt
603   OCAMLDOC=$LOCAL_OCAML/ocamldoc
604   OCAMLMKTOP=$LOCAL_OCAML/ocamlmktop
605   OCAMLDEP=$LOCAL_OCAML/ocamldep
606   OCAMLLEX=$LOCAL_OCAML/ocamllex.opt
607   OCAMLYACC=$LOCAL_OCAML/ocamlyacc
608   CAMLP4=$LOCAL_OCAML/camlp4
609 else
610   if test "$OCAMLC" = "$LOCAL_OCAML"/ocamlc ; then
611   OCAML_PATH="$LOCAL_OCAML"/
612   if test -f "$LOCAL_OCAML/ocamlopt"; then
613     OCAMLOPT=$LOCAL_OCAML/ocamlopt
614   else
615     OCAMLOPT=no
616   fi
617   OCAMLDOC=$LOCAL_OCAML/ocamldoc
618   OCAMLMKTOP=$LOCAL_OCAML/ocamlmktop
619   OCAMLDEP=$LOCAL_OCAML/ocamldep
620   OCAMLLEX=$LOCAL_OCAML/ocamllex
621   OCAMLYACC=$LOCAL_OCAML/ocamlyacc
622   CAMLP4=$LOCAL_OCAML/camlp4
623   else
624   AC_CHECK_PROG(OCAMLOPT, ocamlopt.opt, ocamlopt.opt)
625   AC_CHECK_PROG(OCAMLOPT, ocamlopt, ocamlopt, no)
626   AC_CHECK_PROG(OCAMLDEP, ocamldep, ocamldep)
627   AC_CHECK_PROG(OCAMLLEX, ocamllex.opt, ocamllex.opt)
628   AC_CHECK_PROG(OCAMLLEX, ocamllex, ocamllex)
629   AC_CHECK_PROG(OCAMLYACC, ocamlyacc, ocamlyacc)
630   AC_CHECK_PROG(OCAMLDOC, ocamldoc, ocamldoc)
631   AC_CHECK_PROG(OCAMLMKTOP, ocamlmktop, ocamlmktop)
632   AC_CHECK_PROG(CAMLP4, camlp4, camlp4)
636 OCAMLVERSION=`$OCAMLC -v | sed -n -e 's|.*version* *\(.*\)$|\1|p' `
637 OCAMLLIB=`$OCAMLC -where`
638 REBUILD_OCAML=no
639 case "$OCAMLVERSION" in
640     3.10*|3.11*)
641       if test "$GUI" = "oldgui"; then
642         OLDGUI_NO_310=yes
643         GUI=no
644       fi
645       ;;
646     "$REQUIRED_OCAML"*|3.09.*|3.08.4*|3.08.3*) ;;
647     *)
648       if [ test "$REQUIRED_OCAML" != "CVS" ]; then
649         REBUILD_OCAML=yes
650       fi
651       ;;
652 esac
653 if test "$REBUILD_OCAML" = "yes"; then
654   echo "********  Version $REQUIRED_OCAML of Objective-Caml is required  *********" 1>&2;
655   echo "*******  Check http://caml.inria.fr/  ********" 1>&2;
656   exit 1;
659 if test "$OCAMLOPT" = "no"; then
660   TARGET_TYPE=byte
661   OCAMLLIB_EXT=cma
662 else
663   TARGET_TYPE=opt
664   OCAMLLIB_EXT=cmxa
666   OCAMLOPTVERSION=`$OCAMLOPT -v | sed -n -e 's|.*version* *\(.*\)$|\1|p' `
668   test "$OCAMLOPTVERSION" = "$OCAMLVERSION" || {
669     echo "********  Version $REQUIRED_OCAML of ocamlopt is required  *********" 1>&2;
670     echo "*******  Check http://caml.inria.fr/  ********" 1>&2;
671     exit 1; }
675 echo "-------------------------------------------"
676 echo "     Checking Ocaml $OCAMLVERSION finished."
677 echo "-------------------------------------------"
680 if test "$PROFILE" = "yes"; then
681    OCAMLOPT="$OCAMLOPT -p"
682    CFLAGS="$CFLAGS -pg"
684 if test "$FORCE_MINGW" = "yes"; then
685     OCAMLC="$OCAMLC -ccopt -mno-cygwin"
686     OCAMLOPT="$OCAMLOPT -ccopt -mno-cygwin"
687     OCAMLMKTOP="$OCAMLMKTOP -ccopt -mno-cygwin"
689 if test "$DEBUG" = "yes"; then
690     OCAMLC="$OCAMLC -g"
693 echo -e "\n----------------------------------"
694 echo "     Checking system headers."
695 echo "----------------------------------"
697 ifelse(AC_ACVERSION, [2.13], [],
698 [dnl Large file enabled
699    AC_SYS_LARGEFILE
703 # various header files
704 AC_CHECK_FUNCS(setrlimit getrlimit strerror_r strerror)
705 AC_CHECK_HEADERS(byteswap.h,,)
706 AC_CHECK_HEADERS([sys/utsname.h])
707 AC_CHECK_HEADERS(arpa/inet.h,,)
708 AC_CHECK_HEADERS([sys/types.h sys/time.h sys/resource.h netinet/in_systm.h netinet/in.h netinet/ip.h],,,
709 [#ifdef HAVE_SYS_TYPES_H
710 #include <sys/types.h>
711 #endif
712 #ifdef HAVE_SYS_TIME_H
713 #include <sys/time.h>
714 #endif
715 #ifdef HAVE_NETINET_IN_SYSTM_H
716 #include <netinet/in_systm.h>
717 #endif
718 #ifdef HAVE_NETINET_IN_H
719 #include <netinet/in.h>
720 #endif
723 # poll if possible
724 AC_CHECK_HEADERS(sys/poll.h,,)
725 AC_CHECK_FUNCS(poll,,)
727 AC_CHECK_HEADERS(sys/vfs.h,,)
728 AC_CHECK_HEADERS(sys/statvfs.h,,)
729 AC_CHECK_HEADERS([sys/param.h sys/mount.h],,,
730 [#if HAVE_SYS_PARAM_H
731 #include <sys/param.h>
732 #endif
734 echo "-------------------------------------------"
735 echo "     Checking system headers finished."
736 echo -e "-------------------------------------------\n"
737 echo "-----------------------------------"
738 echo "     Checking system libraries."
739 echo "-----------------------------------"
740 echo "----- checking zlib (required)"
741 AC_CHECK_LIB(z,inflate,,[echo "Zlib missing, did you install zlib and zlib-developer packages?"; exit 1])
742 AC_CHECK_HEADERS(zlib.h,,[echo "Zlib missing, did you install zlib and zlib-developer packages?"; exit 1])
743 AC_CHECK_LIB(z,zlibVersion,[AC_DEFINE(HAVE_ZLIBVERSION, 1,)])
745 if test "$BZIP2" != "no"; then
746   echo "----- checking bzlib (optional)"
747   AC_CHECK_HEADERS(bzlib.h,[AC_CHECK_LIB(bz2,BZ2_bzReadOpen,[BZIP2=yes],[BZIP2=no])],[BZIP2=no])
750 if test "$BZIP2" = "yes"; then
751   AC_CHECK_LIB(bz2,BZ2_bzlibVersion,[AC_DEFINE(HAVE_BZLIBVERSION, 1,)])
752   AC_DEFINE(USE_BZIP2, 1, [Define to 1 if you have bzip2 support.])
753 else
754   AC_MSG_NOTICE(bzlib not available)
757 if test "$MAGIC" != "no"; then
758   echo "----- checking libmagic (GNU file) (optional)"
759   AC_CHECK_HEADERS(magic.h,
760     [AC_CHECK_LIB(magic,magic_file,
761       [AC_CHECK_DECL([MAGIC_ERROR], [MAGIC=yes], [MAGIC=no],[#include <magic.h>])],
762       [MAGIC=no])],
763     [MAGIC=no])
766 if test "$MAGIC" = "yes"; then
767   MAGICLIB=Magic_magic
768 else
769   MAGICLIB=Magic_nomagic
770   AC_MSG_NOTICE(libmagic not available)
773 GD_JPG=no
774 GD_PNG=no
775 if test "$GD" != "no"; then
776   echo "----- checking gd (optional)"
777   GD=no
778   LIBGD=no
779   SAVE_LIBS=$LIBS
780   SAVE_CFLAGS=$CFLAGS
781   SAVE_LDFLAGS=$LDFLAGS
782   AC_CHECK_PROG(GDLIBCONFIG, gdlib-config, gdlib-config)
783   if test "$ac_cv_prog_GDLIBCONFIG" = "gdlib-config"; then
784     GD_LIBS=`$GDLIBCONFIG --libs`
785     $GDLIBCONFIG --static-libs > /dev/null 2>&1
786     if test "$?" = "0"; then
787       GD_STATIC_LIBS=`$GDLIBCONFIG --static-libs`
788     fi
789     GD_LIBS2="$LIBS -lgd $GD_LIBS"
790     LIBS=$GD_LIBS2
791     GD_CFLAGS=`$GDLIBCONFIG --cflags`
792     CFLAGS="$CFLAGS $GD_CFLAGS"
793     GD_LDFLAGS=`$GDLIBCONFIG --ldflags`
794     LDFLAGS="$LDFLAGS $GD_LDFLAGS"
795     AC_MSG_CHECKING(for libgd > 2.0.14)
796     GDVERSION=`$GDLIBCONFIG --version`
797     GDMAJORVERSION=`$GDLIBCONFIG --majorversion`
798     GDMINORVERSION=`$GDLIBCONFIG --minorversion`
799     GDREVISION=`$GDLIBCONFIG --revision`
800     if [ [ $GDMAJORVERSION = 2 ] && [ $GDMINORVERSION = 0 ] && [ $GDREVISION -gt 14 ]]; then
801         AC_MSG_RESULT($GDVERSION)
802         LIBGD=yes
803     else
804         AC_MSG_RESULT(no (found $GDVERSION))
805         LIBGD=no
806     fi
807   else
808     LIBGD=yes
809   fi
811   if test "$LIBGD" = "yes"; then
812     AC_CHECK_HEADERS(gd.h,[LIBGD=yes],[LIBGD=no])
813   fi
815   if test "$LIBGD" = "yes"; then
816     AC_MSG_CHECKING(for gdImageCreate in -lgd)
817     AC_TRY_LINK([#include <gd.h>],
818     [gdImageCreate (0,0);],
819     [LIBGD=yes], [LIBGD=no])
820     AC_MSG_RESULT($LIBGD)
821     LIBS=$SAVE_LIBS
823     if test "$LIBGD" = "no"; then
824       AC_MSG_NOTICE([not found, trying another method])
825       AC_CHECK_LIB(gd, gdImageCreate, [LIBGD=yes], [LIBGD=no])
826     fi
827   fi
829   if test "$LIBGD" = "yes"; then
830     LIBPNG=no
831 # saving current variables
832     SAVE_LIBS_PNG=$LIBS
833     SAVE_CFLAGS_PNG=$CFLAGS
834     SAVE_LDFLAGS_PNG=$LDFLAGS
835     AC_CHECK_PROG(PNGLIBCONFIG, libpng-config, libpng-config)
836     if test "$ac_cv_prog_PNGLIBCONFIG" = "libpng-config"; then
837 # check libpng-config contents and update system variables
838       PNG_LIBS=`$PNGLIBCONFIG --libs`
839       LIBS="$LIBS $PNG_LIBS"
840       PNG_CFLAGS=`$PNGLIBCONFIG --cflags`
841       CFLAGS="$CFLAGS $PNG_CFLAGS"
842       PNG_LDFLAGS=`$PNGLIBCONFIG --ldflags`
843       LDFLAGS="$LDFLAGS $PNG_LDFLAGS"
844     fi
845     AC_CHECK_LIB(png, png_create_read_struct , [LIBPNG=yes])
846 # restore variables
847     LIBS=$SAVE_LIBS_PNG
848     CFLAGS=$SAVE_CFLAGS_PNG
849     LDFLAGS=$SAVE_LDFLAGS_PNG
851     if test "$LIBPNG" = "no"; then
852       AC_MSG_NOTICE(png support not available)
853     else
854       LIBGD_PNG=no
855       LIBS=$GD_LIBS2
856       AC_MSG_CHECKING(for gdImagePng in -lgd)
857       AC_TRY_LINK([#include <gd.h>],
858       [gdImagePng (0,0);],
859       [LIBGD_PNG=yes], [LIBGD_PNG=no])
860       AC_MSG_RESULT($LIBGD_PNG)
861       LIBS=$SAVE_LIBS
863       if test "$LIBGD_PNG" = "no"; then
864         AC_MSG_NOTICE([not found, trying another method])
865         AC_CHECK_LIB(gd, gdImagePng, [LIBGD_PNG=yes], [LIBGD_PNG=no])
866       fi
868       AC_MSG_CHECKING(for png support in libgd)
869       if test "$LIBGD_PNG" = "yes"; then
870         GD=yes
871         GD_PNG=yes
872         AC_MSG_RESULT(yes)
873         AC_CHECK_LIB(png, png_access_version_number,[AC_DEFINE(HAVE_PNGVERSION, 1,)])
874         AC_DEFINE(HAVE_GD_PNG, 1, [Define to 1 if you have png support in libgd.])
875       else
876         AC_MSG_RESULT(no)
877       fi
878     fi
880     LIBJPEG=no
881     AC_CHECK_LIB(jpeg, jpeg_CreateCompress, [LIBJPEG=yes])
883     if test "$LIBJPEG" = "no"; then
884       AC_MSG_NOTICE(jpeg support not available)
885     else
886       LIBGD_JPG=no
887       LIBS=$GD_LIBS2
888       AC_MSG_CHECKING(for gdImageJpeg in -lgd)
889       AC_TRY_LINK([#include <gd.h>],
890       [gdImageJpeg (0,0,0);],
891       [LIBGD_JPG=yes], [LIBGD_JPG=no])
892       AC_MSG_RESULT($LIBGD_JPG)
893       LIBS=$SAVE_LIBS
895       if test "$LIBGD_JPG" = "no"; then
896         AC_MSG_NOTICE([not found, trying another method])
897         AC_CHECK_LIB(gd, gdImageJpeg, [LIBGD_JPG=yes], [LIBGD_JPG=no])
898       fi
900       AC_MSG_CHECKING(for jpeg support in libgd)
901       if test "$LIBGD_JPG" = "yes"; then
902         GD=yes
903         GD_JPG=yes
904         AC_DEFINE(HAVE_GD_JPG, 1, [Define to 1 if you have jpg support in libgd.])
905         AC_MSG_RESULT(yes)
906       else
907         AC_MSG_RESULT(no)
908       fi
909     fi
910   else
911     AC_MSG_NOTICE(libgd not available)
912   fi
913   LIBS=$SAVE_LIBS
914   CFLAGS=$SAVE_CFLAGS
915   LDFLAGS=$SAVE_LDFLAGS
918 if test "$GD" != "no"; then
919   GDGRAPHICS=DriverGraphics_gd
920 else
921   GDGRAPHICS=DriverGraphics_nogd
924 if test "$ICONV" = "yes"; then
925   echo "----- checking iconv (optional)"
926   AM_ICONV
927   if test "$am_cv_func_iconv" != "yes"; then
928     AC_DEFINE(DISABLE_ICONV, 1, [Define to 1 if you want to replace iconv and related with stubs.])
929     ICONV=no
930   else
931   LIBS="$LIBS $LIBICONV"
932   AC_CHECK_FUNCS([locale_charset],,
933   AC_TRY_LINK([#include <langinfo.h>],
934   [char* cs = nl_langinfo(CODESET);],
935   AC_MSG_NOTICE(found nl_langinfo(CODESET)),
936   [echo "Your iconv implementation is incomplete"; exit 1]))
937   AC_CHECK_LIB(charset,locale_charset)
938   AC_CHECK_HEADERS([libcharset.h])
939   AC_CHECK_HEADERS([langinfo.h])
940   AC_CHECK_HEADERS([locale.h])
941   fi
942 else
943   AC_DEFINE(DISABLE_ICONV, 1, [Define to 1 if you want to replace iconv and related with stubs.])
944   ICONV=no
947 if test "$USE_PTHREAD" = "no"; then
948  PTHREAD_LIBS=""
949  echo "You disabled thread support, this will hurt MLDonkey performance!"
950 else
951   echo "----- checking thread support (optional, strongly advised)"
952   ACX_PTHREAD
955 # On linux plaforms, we will have to check that includes from kernel are
956 # available. glibc version test was shamelessly taken from
957 # http://public.activestate.com/gsar/APC/perl-5.8.x/Configure
958 GLIBC_VERSION=""
959 case $host in
960         *linux*)
961            echo "----- GNU C Library version"
962            AC_CHECK_HEADERS(linux/limits.h,, [
963              OLD_CPPFLAGS=$CPPFLAGS
964              CPPFLAGS="-I /usr/src/linux/include"
965              AC_CHECK_HEADER(linux/types.h,[CONFIG_INCLUDES="-I /usr/src/linux/include"])
966              CPPFLAGS=$OLD_CPPFLAGS]
967            )
968            AC_CHECK_HEADERS(gnu/libc-version.h,[AC_MSG_CHECKING(for GNU C Library version)
970 cat >try.c <<'EOCP'
971 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
972    alone are insufficient to distinguish different versions, such as
973    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
974    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
976 #include <stdio.h>
977 int main(void)
979 #ifdef __GLIBC__
980 #   ifdef __GLIBC_MINOR__
981 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
982 #           include <gnu/libc-version.h>
983     printf("%s\n",  gnu_get_libc_version());
984 #       else
985     printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
986 #       endif
987 #   else
988 printf("%d\n",  __GLIBC__);
989 #   endif
990     return 0;
991 #else
992     return 1;
993 #endif
995 EOCP
997            $CC -o try ./try.c
998            GLIBC_VERSION="`./try`"
999            AC_MSG_RESULT($GLIBC_VERSION)
1000            rm -f try try.*],)
1001         ;;
1002         *)         ;;
1003 esac
1005 echo "---------------------------------------------"
1006 echo "     Checking system libraries finished."
1007 echo -e "---------------------------------------------\n"
1009 CXX_VERSION=
1010 CRYPTOPPFLAGS=
1011 echo "--------------------------------------"
1012 echo "     Checking activated networks."
1013 echo "--------------------------------------"
1015   if test "$DONKEY" = "yes"; then
1016     AC_MSG_CHECKING(eDonkey)
1017     if test -d ../src/networks/donkey; then
1018       AC_MSG_RESULT(yes)
1019       if test "$DONKEY_SUI" = "yes"; then
1020         AC_PROG_CXX
1022         AC_CHECK_TOOL(NEWCXX, [$CXX], [no])
1023         AC_MSG_CHECKING(eMule SUI)
1024         if test x"$NEWCXX" = x"no"
1025         then
1026           AC_MSG_RESULT(no)
1027           CXX=
1028           DONKEY_SUI=no
1029         else
1030           AC_MSG_RESULT(yes)
1031           ACX_CHECK_CXX_FLAGS(-fno-omit-frame-pointer,no_omit_frame_pointer, CRYPTOPPFLAGS="-fno-omit-frame-pointer")
1032           ACX_CHECK_CXX_FLAGS(-mno-omit-leaf-frame-pointer,no_omit_leaf_frame_pointer, CRYPTOPPFLAGS="$CRYPTOPPFLAGS -mno-omit-leaf-frame-pointer")
1033           CXX=$NEWCXX
1034           CXX_VERSION=`$CXX -dumpversion`
1035           DONKEY_SUI_FILE=DonkeySui1
1036           AC_DEFINE(HAVE_CRYPTOPP, 1,)
1037         fi
1038       fi
1039 #      AC_MSG_CHECKING(eDonkey server)
1040 #      if test -d ../src/networks/server; then
1041 #        AC_MSG_RESULT(no)
1042 #        DONKEY_SERVER=no
1043 #      else
1044 #        AC_MSG_RESULT(no)
1045 #        DONKEY_SERVER=no
1046 #      fi
1047     else
1048       DONKEY=no
1049       DONKEY_SUI=no
1050       AC_MSG_RESULT(no)
1051     fi
1052   else
1053     DONKEY_SUI=no
1054   fi
1056   if test "$BITTORRENT" = "yes"; then
1057     AC_MSG_CHECKING(BitTorrent)
1058     if test -d ../src/networks/bittorrent; then
1059       AC_MSG_RESULT(yes)
1060     else
1061       BITTORRENT=no
1062       AC_MSG_RESULT(no)
1063     fi
1064   fi
1066   if test "$FILETP" = "yes"; then
1067     AC_MSG_CHECKING(FileTP)
1068     if test -d ../src/networks/fileTP; then
1069       AC_MSG_RESULT(yes)
1070     else
1071       FILETP=no
1072       AC_MSG_RESULT(no)
1073     fi
1074   fi
1076   if test "$GNUTELLA" = "yes"; then
1077     AC_MSG_CHECKING(Gnutella)
1078     if test -d ../src/networks/gnutella; then
1079       AC_MSG_RESULT(yes)
1080     else
1081       GNUTELLA=no
1082       AC_MSG_RESULT(no)
1083     fi
1084   fi
1086   if test "$GNUTELLA2" = "yes"; then
1087     AC_MSG_CHECKING(G2)
1088     if test -d ../src/networks/gnutella2; then
1089       AC_MSG_RESULT(yes)
1090     else
1091       GNUTELLA2=no
1092       AC_MSG_RESULT(no)
1093     fi
1094   fi
1096   if test "$FASTTRACK" = "yes"; then
1097     AC_MSG_CHECKING(Fasttrack)
1098     if test -d ../src/networks/fasttrack; then
1099       AC_MSG_RESULT(yes)
1100     else
1101       FASTTRACK=no
1102       AC_MSG_RESULT(no)
1103     fi
1104   fi
1106   if test "$DIRECT_CONNECT" = "yes"; then
1107     AC_MSG_CHECKING(DirectConnect)
1108     if test "$BZIP2" = "yes"; then
1109       if test -d ../src/networks/direct_connect; then
1110         AC_MSG_RESULT(yes)
1111       else
1112         DIRECT_CONNECT=no
1113         AC_MSG_RESULT(no)
1114       fi
1115     else
1116       DIRECT_CONNECT=no
1117       AC_MSG_RESULT(no - bzip2 support missing)
1118     fi
1119   fi
1121   if test "$SOULSEEK" = "yes"; then
1122     AC_MSG_CHECKING(Soulseek)
1123     if test -d ../src/networks/soulseek; then
1124       AC_MSG_RESULT(yes)
1125     else
1126       SOULSEEK=no
1127       AC_MSG_RESULT(no)
1128     fi
1129   fi
1131   if test "$OPEN_NAPSTER" = "yes"; then
1132     AC_MSG_CHECKING(OpenNapster)
1133     if test -d ../src/networks/opennap; then
1134       AC_MSG_RESULT(yes)
1135     else
1136       OPEN_NAPSTER=no
1137       AC_MSG_RESULT(no)
1138     fi
1139   fi
1141   if test "$OPENFT" = "yes"; then
1142     AC_MSG_CHECKING(OpenFT)
1143     if test -d ../src/networks/openFT; then
1144       AC_MSG_RESULT(yes)
1145     else
1146       OPENFT=no
1147       AC_MSG_RESULT(no)
1148     fi
1149   fi
1150 echo "-----------------------------------------------"
1151 echo "     Checking activated networks finished."
1152 echo "-----------------------------------------------"
1154 OCAMLLIB=`$OCAMLC -where`
1156 if test -f $OCAMLLIB/lablgl.cma; then
1157   LABLGL_CMA=lablgl.cma
1160 if test -f $OCAMLLIB/lablgl.$OCAMLLIB_EXT; then
1161   LABLGL_CMXA=lablgl.$OCAMLLIB_EXT
1164 # Check for GTK only if we want to build the GUI
1165 if test ! "$GUI" = "no"; then
1166   echo "---------------------------------------------------------"
1167   echo "Checking the libraries required to build the GTK GUI."
1168   echo "---------------------------------------------------------"
1169   if test "$GUI" = "newgui2"; then
1170       REQUIRED_GTK=2.4.0
1171       PKG_GTK=gtk+-2.0
1172       AC_MSG_CHECKING(for GTK+ - version >= $REQUIRED_GTK)
1173       if pkg-config --atleast-version $REQUIRED_GTK $PKG_GTK; then
1174         AC_MSG_RESULT(yes)
1175         REQUIRED_RSVG=2.4.0
1176         PKG_RSVG=librsvg-2.0
1177         AC_MSG_CHECKING(for librsvg - version >= $REQUIRED_RSVG)
1178         if pkg-config --atleast-version $REQUIRED_RSVG $PKG_RSVG; then
1179           GTK_CONFIG="pkg-config $PKG_GTK $PKG_RSVG"
1180           REQUIRED_LABLGTK=2.10.1
1181           LABLGTK_NAME=lablgtk2
1182           AC_MSG_RESULT(yes)
1183         else
1184           GTK_CONFIG=no
1185           AC_MSG_RESULT(no)
1186         fi
1187       else
1188         GTK_CONFIG=no
1189         AC_MSG_RESULT(no)
1190       fi
1191   else
1192     if test "$OS_FILES2" = "mingw"; then
1193       REQUIRED_GTK=1.3.0
1194       PKG_GTK=gtk+-1.3-win32-production
1195       AC_MSG_CHECKING(for GTK+ - version >= $REQUIRED_GTK)
1196       if pkg-config --atleast-version $REQUIRED_GTK $PKG_GTK; then
1197         GTK_CONFIG="pkg-config $PKG_GTK"
1198         AC_MSG_RESULT(yes)
1199       else
1200         GTK_CONFIG=no
1201         AC_MSG_RESULT(no)
1202       fi
1203     else
1204       AC_CHECK_PROG(GTK_CONFIG, gtk-config, gtk-config, no)
1205       if test "$GTK_CONFIG" = "no"; then
1206         AC_MSG_RESULT(no)
1207       else
1208         AC_MSG_RESULT(yes)
1209       fi
1210     fi
1211   fi
1212 else
1213   GTK_CONFIG=no
1215 if test "$GTK_CONFIG" = "no"; then
1216      LABLGTK_CONFIG=no
1217 else
1218   AC_MSG_CHECKING(for native code $LABLGTK_NAME)
1219   if test -f `$OCAMLC -where`/$LABLGTK_NAME/lablgtk.$OCAMLLIB_EXT; then
1220      if test "$GUI" = "newgui2"; then
1221        if test -f `$OCAMLC -where`/$LABLGTK_NAME/lablrsvg.$OCAMLLIB_EXT; then
1222          AC_MSG_RESULT(yes)
1223          LABLGTK_CONFIG=yes
1224        else
1225          AC_MSG_RESULT(no)
1226          LABLGTK_CONFIG=no
1227          if test -f `$OCAMLC -where`/$LABLGTK_NAME/lablrsvg.cma; then
1228            echo "---------------------------------------------------------"
1229            echo "lablrsvg is not installed properly. See the INSTALL.txt"
1230            echo "file of mldonkey to see how to compile $LABLGTK_NAME. You"
1231            echo "probably forgot to call 'make opt' before 'make install'."
1232            echo "---------------------------------------------------------"
1233          else
1234            echo "---------------------------------------------------------"
1235            echo "lablrsvg is not installed. See the INSTALL.txt file of"
1236            echo "mldonkey to see how to compile $LABLGTK_NAME. Librsvg"
1237            echo "may not be installed when you compiled $LABLGTK_NAME."
1238            echo "---------------------------------------------------------"
1239          fi
1240        fi
1241      else
1242        AC_MSG_RESULT(yes)
1243        LABLGTK_CONFIG=yes
1244      fi
1245   else
1246      AC_MSG_RESULT(no)
1247      LABLGTK_CONFIG=no
1248      if test -f `$OCAMLC -where`/$LABLGTK_NAME/lablgtk.cma; then
1249        echo "-------------------------------------------------------------"
1250        echo "$LABLGTK_NAME is not installed properly. See the INSTALL.txt"
1251        echo "file of mldonkey to see how to compile $LABLGTK_NAME. You"
1252        echo "probably forgot to call 'make opt' before 'make install'."
1253        echo "-------------------------------------------------------------"
1254      else
1255        echo "Do you want this script to try to download and install $LABLGTK_NAME"
1256        echo "LOCALLY in mldonkey directory ?"
1257        if test "$BATCH" = "no"; then read i <&1; else i=yes; fi
1258        case "$i" in
1259         y* | Y*)
1261          cd $PATCH_DIR
1262          rm -rf lablgtk-"$REQUIRED_LABLGTK"
1263          if test ! -f lablgtk-"$REQUIRED_LABLGTK".tar.gz; then
1264            echo Downloading ...
1265            $WGET http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/dist/lablgtk-"$REQUIRED_LABLGTK".tar.gz
1266          fi
1267          if test ! -f lablgtk-"$REQUIRED_LABLGTK".tar.gz; then exit 1; fi
1269          mkdir -p $BUILD_DIR
1270          cd $BUILD_DIR
1271          echo Uncompressing ...
1272          gzip -cd $PATCH_DIR/lablgtk-"$REQUIRED_LABLGTK".tar.gz | tar xf -
1273          (cd lablgtk-"$REQUIRED_LABLGTK"
1274           if test -f $PATCH_DIR/lablgtk-"$REQUIRED_LABLGTK".patch; then
1275             echo Patching ...
1276             patch -p0 < $PATCH_DIR/lablgtk-"$REQUIRED_LABLGTK".patch
1277           fi
1278           PATH=$OCAML_PATH:$PATH
1279           export PATH
1280           echo $PATH
1282           if test "$GUI" = "newgui2"; then
1283             ./configure --prefix=$LOCAL_DIR
1284             $GNU_MAKE world
1285             $GNU_MAKE install
1286           else
1287             $GNU_MAKE configure
1288             $GNU_MAKE
1289             $GNU_MAKE opt
1290             $GNU_MAKE install
1291           fi
1293           cd ..
1294           rm -rf lablgtk-"$REQUIRED_LABLGTK"
1295          )
1296          cd $CONFIG_DIR
1297          if test -f `$OCAMLC -where`/$LABLGTK_NAME/lablgtk.$OCAMLLIB_EXT; then
1298             LABLGTK_CONFIG=yes
1299          else
1300             echo "Installation of $LABLGTK_NAME failed"
1301             LABLGTK_CONFIG=no
1302          fi
1303          ;;
1304         *);;
1305       esac
1306      fi
1307   fi
1310 if test "$GUI" = "newgui2" ; then
1311   GUIS="mldonkey_gui\$(EXE)"
1312   GTKCFLAGS="`pkg-config --cflags-only-I gtk+-2.0`"
1313   GTKLLIBS="`pkg-config --libs-only-L gtk+-2.0`"
1314   GTKLFLAGS="`pkg-config --libs-only-l gtk+-2.0`"
1315 else
1316   GUIS="mldonkey_gui\$(EXE) mldonkey_gui2\$(EXE)"
1319 if test "$LABLGTK_CONFIG" = "no"; then
1320   GUI="no"
1321 else
1322   MORE_TARGETS="$MORE_TARGETS $GUIS"
1323   AC_MSG_CHECKING(GToolbox.popup_menu args)
1324   OCAML_LIB_DIR="`$OCAMLC -where`"
1325   GTOOLBOX="$OCAML_LIB_DIR/$LABLGTK_NAME/gToolbox.mli"
1326   grep popup $GTOOLBOX | grep -i button 2> /dev/null && GTOOLBOX_ARGS=new
1327   if test "$GTOOLBOX_ARGS" = "new"; then
1328     GTOOLBOX_POPUPMENU=' ~button: button ~time: time '
1329     AC_MSG_RESULT(new)
1330   else
1331     GTOOLBOX_POPUPMENU=' ~x: button ~y: time '
1332     AC_MSG_RESULT(old)
1333   fi
1334   echo "---------------------------------------------------------"
1335   echo "End of GTK GUI configuration."
1336   echo "---------------------------------------------------------"
1339 if test "$OS_FILES" = "mingw"; then
1340    OCAMLDEP_OPTIONS="-slash"
1343 AC_SUBST(LIBS)
1344 AC_SUBST(CFLAGS)
1345 AC_SUBST(CPPFLAGS)
1346 AC_SUBST(CXXFLAGS)
1347 AC_SUBST(LDFLAGS)
1348 AC_SUBST(CC)
1349 AC_SUBST(CPP)
1350 AC_SUBST(CXX)
1351 AC_SUBST(FIX_BROKEN_CPP)
1352 AC_SUBST(CONFIG_INCLUDES)
1353 AC_SUBST(OCAMLC)
1354 AC_SUBST(OCAMLLIB)
1355 AC_SUBST(OCAMLOPT)
1356 AC_SUBST(OCAMLLEX)
1357 AC_SUBST(OCAMLYACC)
1358 AC_SUBST(OCAMLDEP)
1359 AC_SUBST(OCAMLDEP_OPTIONS)
1360 AC_SUBST(CAMLP4)
1361 AC_SUBST(PERL)
1362 AC_SUBST(OCAMLDOC)
1363 AC_SUBST(OCAMLMKTOP)
1364 AC_SUBST(SYSTEM)
1365 AC_SUBST(MORE_TARGETS)
1366 AC_SUBST(MORE_SUBDIRS)
1367 AC_SUBST(LABLGL_CMA)
1368 AC_SUBST(LABLGL_CMXA)
1369 AC_SUBST(MD4ARCH)
1370 AC_SUBST(MD4COMP)
1371 AC_SUBST(ICONV)
1372 AC_SUBST(OPEN_NAPSTER)
1373 AC_SUBST(DIRECT_CONNECT)
1374 AC_SUBST(GNUTELLA)
1375 AC_SUBST(GNUTELLA2)
1376 AC_SUBST(BITTORRENT)
1377 AC_SUBST(FILETP)
1378 AC_SUBST(SOULSEEK)
1379 AC_SUBST(OPENFT)
1380 AC_SUBST(FASTTRACK)
1381 AC_SUBST(DONKEY)
1382 AC_SUBST(DONKEY_SUI)
1383 AC_SUBST(CRYPTOPPFLAGS)
1384 AC_SUBST(DONKEY_SUI_FILE)
1385 AC_SUBST(DONKEY_SERVER)
1386 AC_SUBST(GUI)
1387 AC_SUBST(REQUIRED_OCAML)
1388 AC_SUBST(REQUIRED_LABLGTK)
1389 AC_SUBST(ARCH)
1390 AC_SUBST(COMPRESS)
1391 AC_SUBST(COMPRESS_EXT)
1392 AC_SUBST(CHECKBOUNDS)
1393 AC_SUBST(MLDONKEY_VERSION)
1394 AC_SUBST(SCM_VERSION)
1395 AC_SUBST(MAJOR_VERSION)
1396 AC_SUBST(MINOR_VERSION)
1397 AC_SUBST(SUB_VERSION)
1398 AC_SUBST(GTOOLBOX_POPUPMENU)
1399 AC_SUBST(OS_FILES)
1400 AC_SUBST(OS_FILES2)
1401 AC_SUBST(TARGET_TYPE)
1402 AC_SUBST(RPMBUILD)
1403 AC_SUBST(GTKCFLAGS)
1404 AC_SUBST(GTKLLIBS)
1405 AC_SUBST(GTKLFLAGS)
1406 AC_SUBST(GD)
1407 AC_SUBST(GD_JPG)
1408 AC_SUBST(GD_PNG)
1409 AC_SUBST(GDGRAPHICS)
1410 AC_SUBST(GD_LIBS)
1411 AC_SUBST(GD_STATIC_LIBS)
1412 AC_SUBST(GD_CFLAGS)
1413 AC_SUBST(GD_LDFLAGS)
1414 AC_SUBST(BZIP2)
1415 AC_SUBST(MAGIC)
1416 AC_SUBST(MAGICLIB)
1417 BUILD_SYSTEM="`uname -s` `uname -m` `uname -r`"
1418 AC_SUBST(BUILD_SYSTEM)
1419 AC_SUBST(GLIBC_VERSION)
1420 AC_SUBST(CC_VERSION)
1421 AC_SUBST(CXX_VERSION)
1422 AC_SUBST(CONFIGURE_ARGUMENTS)
1423 AC_SUBST(CONFIGURE_RUN)
1425 AUTOCONF=../src/utils/lib/autoconf.ml
1426 GTK_AUTOCONF=../src/utils/lib/gAutoconf.ml
1427 AC_OUTPUT(\
1428   Makefile.config \
1429   mldonkey.rc \
1430   $AUTOCONF.new $GTK_AUTOCONF.new \
1431    ../src/utils/lib/magic.ml \
1432    ../src/networks/donkey/donkeySui.ml \
1433    ../src/daemon/driver/driverGraphics.ml \
1434    ../packages/rpm/mldonkey.spec \
1435    ../packages/rpm/Makefile \
1436    ../packages/slackware/mldonkey.options)
1437 diff $AUTOCONF.new $AUTOCONF 2> /dev/null > /dev/null || cp -f $AUTOCONF.new $AUTOCONF
1438 diff $GTK_AUTOCONF.new $GTK_AUTOCONF 2> /dev/null > /dev/null || cp -f $GTK_AUTOCONF.new $GTK_AUTOCONF
1440 cd ..
1442 echo -e "\nBuilding dependencies (if it blocks, try '$GNU_MAKE depend' to see the problem)"
1443 $GNU_MAKE depend 2> /dev/null > /dev/null || echo "Building dependencies fails: try: '$GNU_MAKE depend'"
1445 echo -e -n "\nConfiguring MLDonkey" $MLDONKEY_VERSION
1446 if test ! -z "$SCM_VERSION"; then
1447   echo -n " - SCM: $SCM_VERSION"
1449 echo " completed."
1451 echo -e "\nNetwork modules:"
1452 echo -n " - eDonkey           "
1453 if test "$DONKEY" = "yes"; then
1454   if test "$DONKEY_SUI" = "yes"; then
1455     echo "enabled (eMule SUI enabled)"
1456   else
1457     echo "enabled (eMule SUI disabled)"
1458   fi
1459 else
1460   echo "        disabled"
1463 echo -n " - BitTorrent        "
1464 if test "$BITTORRENT" = "yes"; then
1465   echo "enabled"
1466 else
1467   echo "        disabled"
1470 echo -n " - FileTP (aka wget) "
1471 if test "$FILETP" = "yes"; then
1472   echo "enabled"
1473 else
1474   echo "        disabled"
1477 echo -n " - Fasttrack         "
1478 if test "$FASTTRACK" = "yes"; then
1479   echo "enabled"
1480 else
1481   echo "        disabled"
1484 echo -n " - Gnutella          "
1485 if test "$GNUTELLA" = "yes"; then
1486   echo "enabled (warning: this network module is unmaintained)"
1487 else
1488   echo "        disabled - unmaintained"
1491 echo -n " - Gnutella2         "
1492 if test "$GNUTELLA2" = "yes"; then
1493   echo "enabled (warning: this network module is unmaintained)"
1494 else
1495   echo "        disabled - unmaintained"
1498 echo -n " - Direct Connect    "
1499 if test "$DIRECT_CONNECT" = "yes"; then
1500   echo "enabled"
1501 else
1502   echo "        disabled"
1505 echo -n " - Open Napster      "
1506 if test "$OPEN_NAPSTER" = "yes"; then
1507   echo "enabled          - currently not usable"
1508 else
1509   echo "        disabled - currently not usable"
1512 echo -n " - Soulseek          "
1513 if test "$SOULSEEK" = "yes"; then
1514   echo "enabled          - currently not usable"
1515 else
1516   echo "        disabled - currently not usable"
1519 echo -n " - OpenFT            "
1520 if test "$OPENFT" = "yes"; then
1521   echo "enabled          - currently not usable"
1522 else
1523   echo "        disabled - currently not usable"
1526 echo -e "\nCore features:"
1528 echo " - zlib (required)   enabled"
1530 echo -n " - threads           "
1531 if test "$USE_PTHREAD" = "yes"; then
1532   echo "enabled"
1533 else
1534   echo "        disabled"
1537 echo -n " - bzip2             "
1538 if test "$BZIP2" = "yes"; then
1539   echo "enabled"
1540 else
1541   echo "        disabled"
1544 echo -n " - iconv             "
1545 if test "$ICONV" = "yes"; then
1546   echo "enabled"
1547 else
1548   echo "        disabled"
1551 echo -n " - libmagic          "
1552 if test "$MAGIC" = "yes"; then
1553   echo "enabled"
1554 else
1555   echo "        disabled"
1558 echo -n " - graphical stats   "
1559 if test "$GD" = "yes"; then
1560   echo "enabled"
1561   echo -n "   - png support     "
1562   if test "$GD_PNG" = "yes"; then
1563     echo "enabled"
1564   else
1565     echo "        disabled"
1566   fi
1568   echo -n "   - jpg support     "
1569   if test "$GD_JPG" = "yes"; then
1570     echo "enabled"
1571   else
1572     echo "        disabled"
1573   fi
1574 else
1575   echo "        disabled"
1578 if test "$LABLGTK_CONFIG" = "yes"; then
1579   echo -n -e "\n - GUI support       "
1580   if test "$GUI" = "newgui1"; then
1581     echo "GTK1 newgui"
1582   else
1583     if test "$GUI" = "newgui2"; then
1584       echo "GTK2 GUI"
1585     else
1586       echo "GTK1 oldgui"
1587     fi
1588   fi
1591 if test "$OLDGUI_NO_310" = "yes"; then
1592   echo " - GUI support       GTK1 oldgui does not work with Ocaml 3.10/3.11, disabled"
1595 if test "$TARGET_TYPE" = "byte"; then
1596   OCAML_TYPE="- byte code"
1597   COMPILE_TARGET=".byte"
1599 echo -e "\nCompilers:"
1600 echo -e " - Ocaml version     $OCAMLVERSION $OCAML_TYPE"
1601 echo -e " - $CC version       $CC_VERSION"
1602 if test "x$CXX" != "x"; then
1603   echo -e " - $CXX version       $CXX_VERSION"
1605 echo -e "\nNow execute '$GNU_MAKE' to start compiling. Good luck!"
1607 echo -e "\nTo compile a static code execute:     $GNU_MAKE mlnet$COMPILE_TARGET.static"
1608 echo      "To produce a release tarball execute: $GNU_MAKE release.mlnet.static"
1609 echo      "To clean the build directory execute: $GNU_MAKE maintainerclean"
1610 if test "$DONKEY_SUI" = "yes"; then
1611   echo -e "\nCompiling CryptoPP.cc can take several minutes, on slow machines up to half an hour."