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

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2007-10-25 20:54:09 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071025205409-ib4417foffej3s4s
Tags: 5.10.27-1
[ Frank S. Thomas ]
* New upstream release. (closes: #447929)
  - Handles change in /proc/cpuinfo on powerpc introduced in Linux 2.6.23.
    Thanks to Thibaut VARENE <varenet@debian.org> for the patch.
    (closes: #437459)
  - Allows to set arbitrary many alternate platforms in the client's config
    file cc_config.xml with the <alt_platform> element which is a direct
    child of the <options> element. (closes: #437326)
  - BOINC Manager: At account creation check if wxGetUserName() returned an
    empty string and if it did use the output of wxGetUserId() instead.
    Thanks to Morita Sho <morita-pub-en-debian@inz.sakura.ne.jp> for the
    excellent bug report. (closes: #447320)
* debian/control:
  - Moved Homepage pseudo field in the long descriptions to the source stanza
    because this is now a propper debian/control field supported by dpkg.
  - Removed XS- prefix from Vcs fields since they are now officially
    supported by dpkg.
* debian/boinc-client.init: Print the scheduling status of boinc_client's
  children only if there are any present, otherwise schedtool would be
  called without arguments and would print its usage text.
* debian/icons/: Use icons with transparent background.
* debian/boinc-manager.desktop:
  - Addded Portuguese translations for GenericName and Comment, thanks to
    Marco Rodrigues <gothicx@sapo.pt>.
  - Monitor is a subcategory of the System main category, so use System
    instead of Utility.
  - Removed the Encoding key since it is deprecated in the Desktop Entry
    Specification 1.0 and added the Version key.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl -*- autoconf -*-
2
2
 
3
 
dnl $Id: configure.ac 12993 2007-06-23 15:56:05Z romw $
 
3
dnl $Id: configure.ac 13948 2007-10-24 19:12:05Z romw $
4
4
 
5
5
dnl NOTE: on milkyway.ssl and jill.ssl , need autoconf/automake et al from quarls
6
6
dnl directory; the _autosetup script does this.
9
9
AC_PREREQ(2.57)
10
10
 
11
11
dnl Set the BOINC version here.  You can also use the set-version script.
12
 
AC_INIT(BOINC, 5.10.8)
 
12
AC_INIT(BOINC, 5.10.27)
13
13
 
14
14
AC_ARG_ENABLE(debug, 
15
15
    AS_HELP_STRING([--enable-debug],
105
105
59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
106
106
])
107
107
 
108
 
AC_REVISION([$Revision: 12993 $])
 
108
AC_REVISION([$Revision: 13948 $])
109
109
 
110
110
AC_DEFUN([KC_STRIP_LEADING_ZEROS],[m4_bregexp([$*],[^0*\(..*\)],\1)])
111
111
 
454
454
    AC_DEFINE_UNQUOTED(UTMP_LOCATION, "$utmp_file", utmp file location)
455
455
fi
456
456
 
457
 
dnl Checks for device files
458
 
if test -e "/dev/mouse"; then
459
 
    AC_DEFINE(HAVE__DEV_MOUSE, 1, [Define to 1 if /dev/mouse exists])
460
 
fi
461
 
if test -e "/dev/kbd"; then
462
 
    AC_DEFINE(HAVE__DEV_KBD, 1, [Define to 1 if /dev/kbd exists])
463
 
fi
464
 
if test -e "/dev/tty1"; then
465
 
    AC_DEFINE(HAVE__DEV_TTY1, 1, [Define to 1 if /dev/tty1 exists])
466
 
fi
467
 
 
468
457
dnl Check for /proc/self/psinfo (Solaris)
469
458
if test -e "/proc/self/psinfo"; then
470
459
    AC_DEFINE(HAVE__PROC_SELF_PSINFO, 1, [Define to 1 if /proc/self/psinfo exists])