~yolanda.robla/ubuntu/trusty/memcached/add_distribution

« back to all changes in this revision

Viewing changes to config.guess

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2010-05-12 11:41:22 UTC
  • mfrom: (1.1.7 upstream) (3.3.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100512114122-e2dphwiezevuny1t
Tags: 1.4.5-1
* New upstream release.  Main changes since 1.4.2 are:
  New features:
  - Support for SASL authentication.
  - New script damemtop - a memcached top.
  - Slab optimizations.
  - New stats, for reclaimed memory and SASL events.
  Bugs fixed:
  - Malicious input can crash server (CVE-2010-1152).  Closes: #579913.
  - Fixed several problems with slab handling and growth.
  - Provide better error reporting.
  - Fix get stats accounting.
  - Fixed backwards compatibility with delete 0.
  - Documentation fixes.
  - Various build fixes, among others, fixed FTBFS with gcc-4.5 (closes:
    #565033).
* Refreshed and renamed 01_init_script_compliant_with_LSB.patch.
* Fixed lintian warnings by adding $remote_fs to init.d script.
* Removed non-existent document (doc/memory_management.txt).
* debian/control: Bumped Standards-Version to 3.8.4 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5
5
#   Free Software Foundation, Inc.
6
6
 
7
 
timestamp='2008-09-28'
 
7
timestamp='2009-02-03'
8
8
 
9
9
# This file is free software; you can redistribute it and/or modify it
10
10
# under the terms of the GNU General Public License as published by
348
348
        echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
349
349
        exit ;;
350
350
    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
351
 
        echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
 
351
        eval $set_cc_for_build
 
352
        SUN_ARCH="i386"
 
353
        # If there is a compiler, see if it is configured for 64-bit objects.
 
354
        # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
 
355
        # This test works for both compilers.
 
356
        if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
 
357
            if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
 
358
                (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
 
359
                grep IS_64BIT_ARCH >/dev/null
 
360
            then
 
361
                SUN_ARCH="x86_64"
 
362
            fi
 
363
        fi
 
364
        echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
352
365
        exit ;;
353
366
    sun4*:SunOS:6*:*)
354
367
        # According to config.sub, this is the proper way to canonicalize
1160
1173
    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
1161
1174
        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1162
1175
          && { echo i486-ncr-sysv4; exit; } ;;
 
1176
    NCR*:*:4.2:* | MPRAS*:*:4.2:*)
 
1177
        OS_REL='.3'
 
1178
        test -r /etc/.relid \
 
1179
            && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
 
1180
        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
 
1181
            && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
 
1182
        /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
 
1183
            && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
 
1184
        /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
 
1185
            && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1163
1186
    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
1164
1187
        echo m68k-unknown-lynxos${UNAME_RELEASE}
1165
1188
        exit ;;
1346
1369
    i*86:rdos:*:*)
1347
1370
        echo ${UNAME_MACHINE}-pc-rdos
1348
1371
        exit ;;
 
1372
    i*86:AROS:*:*)
 
1373
        echo ${UNAME_MACHINE}-pc-aros
 
1374
        exit ;;
1349
1375
esac
1350
1376
 
1351
1377
#echo '(No uname command or uname output not recognized.)' 1>&2