diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-03 16:49:33 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-03 16:49:33 (GMT) |
commit | 6e8975abdb6b52477a5788bca969e13e467814dd (patch) | |
tree | 947221d2f202d586f7f386c57472cc941980963f /configure | |
parent | e305d80490e1fb2dc15eb9cf9ee13428936c8e16 (diff) | |
download | Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.zip Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.tar.gz Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.tar.bz2 |
Release-1.3.8-20040803
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -194,6 +194,9 @@ if test -z "$f_platform"; then Cygwin:*) f_platform=win32-g++ ;; + *MiNT:*) + f_platform=m68k-atari-mint-g++ + ;; *) echo echo "Your platform was not recognised by this configure script" @@ -431,6 +434,13 @@ HAVE_DOT = $f_dot EOF fi +if test "$f_platform" = "m68k-atari-mint-g++"; then + cat >> .makeconfig <<EOF +TMAKE += -unix +EOF +fi + + touch .tmakeconfig if test "$f_shared" = NO; then if test "$f_platform" = "osf1-cxx" -o "$f_platform" = "irix-n32"; then @@ -526,8 +536,7 @@ done echo -n " Generating src/lang_cfg.h..." echo $f_langs | $f_perl -e '@l=split(/,/,<STDIN>); chomp @l; - @allowed=(NL,SE,CZ,FR,IT,DE,JP,JE,ES,FI,RU,HR,PL,PT,HU,KR,KE,RO,SI,CN,NO,BR, - DK,SK,UA,GR,TW,SR,CA,LT,ZA); + @allowed=(split(/,/,"NL,SE,CZ,FR,IT,DE,JP,JE,ES,FI,RU,HR,PL,PT,HU,KR,KE,RO,SI,CN,NO,BR,DK,SK,UA,GR,TW,SR,CA,LT,ZA")); foreach my $elem (@l){ $elem =~ tr/a-z/A-Z/; $r=0; |