~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to m4/boinc_platform.m4

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
              [boinc_platform=])
7
7
  AC_ARG_WITH([boinc-alt-platform],
8
8
              AC_HELP_STRING([--with-boinc-alt-platform],
9
 
                              [override the boinc alterate platform]),
 
9
                              [override the boinc alternate platform]),
10
10
              [boinc_alt_platform="$withval"],
11
11
              [boinc_alt_platform=])
12
12
  AC_MSG_CHECKING([boinc platform])
38
38
          fi
39
39
        fi
40
40
        ;;
 
41
      hppa*-hp-hpux*)
 
42
        if test "$COMPILER_MODEL_BITS" = "64" ; then
 
43
          boinc_platform="hppa64-hp-hpux"
 
44
          if test -z "${boinc_alt_platform}" ; then
 
45
            boinc_alt_platform="hppa-hp-hpux"
 
46
          fi
 
47
        else
 
48
          boinc_platform="hppa-hp-hpux"
 
49
        fi
 
50
        ;;
 
51
      ia64-hp-hpux*)
 
52
        boinc_platform="ia64-hp-hpux"
 
53
        ;;
 
54
 
41
55
    esac
42
56
  fi
43
57
  AC_DEFINE_UNQUOTED([HOSTTYPE],"$boinc_platform",[Platform identification used to identify applications for this BOINC core client])