Changeset 227

Show
Ignore:
Timestamp:
02/08/08 19:39:47 (4 years ago)
Author:
ath
Message:

Fix again the old Binreloc problem.

Location:
trunk/fm_gui
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • trunk/fm_gui/acinclude.m4

    r207 r227  
    2424                               [br_cv_valid_prefixes], [ 
    2525                                if test "$bindir" = '${exec_prefix}/bin' -a "$sbindir" = '${exec_prefix}/sbin' -a \ 
    26                                         "$datadir" = '${prefix}/share' -a "$libdir" = '${exec_prefix}/lib' -a \ 
     26                                        "$datarootdir" = '${prefix}/share' -a "$libdir" = '${exec_prefix}/lib' -a \ 
    2727                                        "$libexecdir" = '${exec_prefix}/libexec' -a "$sysconfdir" = '${prefix}/etc' 
    2828                                then 
  • trunk/fm_gui/config.guess

    r207 r227  
    22# Attempt to guess a canonical system name. 
    33#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 
    4 #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 
    5  
    6 timestamp='2006-02-23' 
     4#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, 
     5#   Inc. 
     6 
     7timestamp='2007-03-06' 
    78 
    89# This file is free software; you can redistribute it and/or modify it 
     
    161162            sh3el) machine=shl-unknown ;; 
    162163            sh3eb) machine=sh-unknown ;; 
     164            sh5el) machine=sh5le-unknown ;; 
    163165            *) machine=${UNAME_MACHINE_ARCH}-unknown ;; 
    164166        esac 
     
    211213        exit ;; 
    212214    macppc:MirBSD:*:*) 
    213         echo powerppc-unknown-mirbsd${UNAME_RELEASE} 
     215        echo powerpc-unknown-mirbsd${UNAME_RELEASE} 
    214216        exit ;; 
    215217    *:MirBSD:*:*) 
     
    771773            pc98) 
    772774                echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; 
     775            amd64) 
     776                echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; 
    773777            *) 
    774778                echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; 
     
    778782        echo ${UNAME_MACHINE}-pc-cygwin 
    779783        exit ;; 
    780     i*:MINGW*:*) 
    781         echo ${UNAME_MACHINE}-pc-mingw32 
    782         exit ;; 
    783     i*:MSYS_NT-*:*:*) 
     784    *:MINGW*:*) 
    784785        echo ${UNAME_MACHINE}-pc-mingw32 
    785786        exit ;; 
     
    791792        echo ${UNAME_MACHINE}-pc-pw32 
    792793        exit ;; 
    793     x86:Interix*:[345]*) 
    794         echo i586-pc-interix${UNAME_RELEASE} 
    795         exit ;; 
    796     EM64T:Interix*:[345]*) 
    797         echo x86_64-unknown-interix${UNAME_RELEASE} 
    798         exit ;; 
     794    *:Interix*:[3456]*) 
     795        case ${UNAME_MACHINE} in 
     796            x86)  
     797                echo i586-pc-interix${UNAME_RELEASE} 
     798                exit ;; 
     799            EM64T | authenticamd) 
     800                echo x86_64-unknown-interix${UNAME_RELEASE} 
     801                exit ;; 
     802        esac ;; 
    799803    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) 
    800804        echo i${UNAME_MACHINE}-pc-mks 
     
    830834        exit ;; 
    831835    arm*:Linux:*:*) 
     836        echo ${UNAME_MACHINE}-unknown-linux-gnu 
     837        exit ;; 
     838    avr32*:Linux:*:*) 
    832839        echo ${UNAME_MACHINE}-unknown-linux-gnu 
    833840        exit ;; 
     
    948955        echo x86_64-unknown-linux-gnu 
    949956        exit ;; 
     957    xtensa:Linux:*:*) 
     958        echo xtensa-unknown-linux-gnu 
     959        exit ;; 
    950960    i*86:Linux:*:*) 
    951961        # The BFD linker knows what the default object file format is, so 
     
    9901000        # endif 
    9911001        #else 
    992         #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__sun) 
     1002        #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) 
    9931003        LIBC=gnu 
    9941004        #else 
     
    12061216        echo sx6-nec-superux${UNAME_RELEASE} 
    12071217        exit ;; 
     1218    SX-7:SUPER-UX:*:*) 
     1219        echo sx7-nec-superux${UNAME_RELEASE} 
     1220        exit ;; 
     1221    SX-8:SUPER-UX:*:*) 
     1222        echo sx8-nec-superux${UNAME_RELEASE} 
     1223        exit ;; 
     1224    SX-8R:SUPER-UX:*:*) 
     1225        echo sx8r-nec-superux${UNAME_RELEASE} 
     1226        exit ;; 
    12081227    Power*:Rhapsody:*:*) 
    12091228        echo powerpc-apple-rhapsody${UNAME_RELEASE} 
  • trunk/fm_gui/config.sub

    r207 r227  
    22# Configuration validation subroutine script. 
    33#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 
    4 #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 
    5  
    6 timestamp='2006-02-23' 
     4#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, 
     5#   Inc. 
     6 
     7timestamp='2007-01-18' 
    78 
    89# This file is (in principle) common to ALL GNU software. 
     
    241242        | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ 
    242243        | am33_2.0 \ 
    243         | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ 
     244        | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ 
    244245        | bfin \ 
    245246        | c4x | clipper \ 
    246247        | d10v | d30v | dlx | dsp16xx \ 
    247         | fr30 | frv \ 
     248        | fido | fr30 | frv \ 
    248249        | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ 
    249250        | i370 | i860 | i960 | ia64 \ 
    250251        | ip2k | iq2000 \ 
    251         | m32r | m32rle | m68000 | m68k | m88k | maxq | mb | microblaze | mcore \ 
     252        | m32c | m32r | m32rle | m68000 | m68k | m88k \ 
     253        | maxq | mb | microblaze | mcore | mep \ 
    252254        | mips | mipsbe | mipseb | mipsel | mipsle \ 
    253255        | mips16 \ 
     
    275277        | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ 
    276278        | pyramid \ 
    277         | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ 
     279        | score \ 
     280        | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ 
    278281        | sh64 | sh64le \ 
    279         | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ 
    280         | sparcv8 | sparcv9 | sparcv9b \ 
    281         | strongarm \ 
     282        | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ 
     283        | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ 
     284        | spu | strongarm \ 
    282285        | tahoe | thumb | tic4x | tic80 | tron \ 
    283286        | v850 | v850e \ 
    284287        | we32k \ 
    285         | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ 
     288        | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ 
    286289        | z8k) 
    287                 basic_machine=$basic_machine-unknown 
    288                 ;; 
    289         m32c) 
    290290                basic_machine=$basic_machine-unknown 
    291291                ;; 
     
    319319        | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ 
    320320        | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \ 
    321         | avr-* \ 
     321        | avr-* | avr32-* \ 
    322322        | bfin-* | bs2000-* \ 
    323323        | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ 
     
    325325        | d10v-* | d30v-* | dlx-* \ 
    326326        | elxsi-* \ 
    327         | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ 
     327        | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ 
    328328        | h8300-* | h8500-* \ 
    329329        | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ 
    330330        | i*86-* | i860-* | i960-* | ia64-* \ 
    331331        | ip2k-* | iq2000-* \ 
    332         | m32r-* | m32rle-* \ 
     332        | m32c-* | m32r-* | m32rle-* \ 
    333333        | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ 
    334334        | m88110-* | m88k-* | maxq-* | mcore-* \ 
     
    359359        | pyramid-* \ 
    360360        | romp-* | rs6000-* \ 
    361         | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ 
     361        | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ 
    362362        | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ 
    363         | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ 
     363        | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ 
    364364        | sparclite-* \ 
    365         | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ 
     365        | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ 
    366366        | tahoe-* | thumb-* \ 
    367367        | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ 
     
    369369        | v850-* | v850e-* | vax-* \ 
    370370        | we32k-* \ 
    371         | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ 
     371        | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ 
    372372        | xstormy16-* | xtensa-* \ 
    373373        | ymp-* \ 
    374374        | z8k-*) 
    375                 ;; 
    376         m32c-*) 
    377375                ;; 
    378376        # Recognize the various machine names and aliases which stand 
     
    913911                basic_machine=mipsisa64sb1el-unknown 
    914912                ;; 
     913        sde) 
     914                basic_machine=mipsisa32-sde 
     915                os=-elf 
     916                ;; 
    915917        sei) 
    916918                basic_machine=mips-sei 
     
    923925                basic_machine=sh-hitachi 
    924926                os=-hms 
     927                ;; 
     928        sh5el) 
     929                basic_machine=sh5le-unknown 
    925930                ;; 
    926931        sh64) 
     
    11291134                basic_machine=sh-unknown 
    11301135                ;; 
    1131         sparc | sparcv8 | sparcv9 | sparcv9b) 
     1136        sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) 
    11321137                basic_machine=sparc-sun 
    11331138                ;; 
     
    12181223              | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ 
    12191224              | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ 
    1220               | -skyos* | -haiku* | -rdos*) 
     1225              | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) 
    12211226        # Remember, each alternative MUST END IN *, to match a version number. 
    12221227                ;; 
     
    13701375 
    13711376case $basic_machine in 
     1377        score-*) 
     1378                os=-elf 
     1379                ;; 
     1380        spu-*) 
     1381                os=-elf 
     1382                ;; 
    13721383        *-acorn) 
    13731384                os=-riscix1.2 
     
    13791390                os=-aout 
    13801391                ;; 
    1381     c4x-* | tic4x-*) 
    1382         os=-coff 
    1383         ;; 
     1392        c4x-* | tic4x-*) 
     1393                os=-coff 
     1394                ;; 
    13841395        # This must come before the *-dec entry. 
    13851396        pdp10-*) 
     
    14061417        m68*-cisco) 
    14071418                os=-aout 
     1419                ;; 
     1420        mep-*) 
     1421                os=-elf 
    14081422                ;; 
    14091423        mips*-cisco) 
  • trunk/fm_gui/configure

    r220 r227  
    2162221622 
    2162321623                                if test "$bindir" = '${exec_prefix}/bin' -a "$sbindir" = '${exec_prefix}/sbin' -a \ 
    21624                                         "$datadir" = '${prefix}/share' -a "$libdir" = '${exec_prefix}/lib' -a \ 
     21624                                        "$datarootdir" = '${prefix}/share' -a "$libdir" = '${exec_prefix}/lib' -a \ 
    2162521625                                        "$libexecdir" = '${exec_prefix}/libexec' -a "$sysconfdir" = '${prefix}/etc' 
    2162621626                                then 
     
    2595325953echo "" 
    2595425954echo "Build options:" 
    25955 if test "$br_cv_binreloc" = "yes"; then 
    25956 echo "        binreloc support: yes" 
    25957 else 
    25958 echo "        binreloc support: no" 
    25959 fi 
     25955echo "        binreloc support: $br_cv_binreloc" 
    2596025956echo "" 
    2596125957echo "Installation options:" 
  • trunk/fm_gui/configure.ac

    r220 r227  
    155155echo "" 
    156156echo "Build options:" 
    157 if test "$br_cv_binreloc" = "yes"; then 
    158 echo "        binreloc support: yes" 
    159 else 
    160 echo "        binreloc support: no" 
    161 fi 
     157echo "        binreloc support: $br_cv_binreloc" 
    162158echo "" 
    163159echo "Installation options:"