~ubuntu-branches/ubuntu/wily/basilisk2/wily-proposed

« back to all changes in this revision

Viewing changes to src/MacOSX/sysdeps.h

  • Committer: Package Import Robot
  • Author(s): Jonas Smedegaard, Jonas Smedegaard, Jérémy Lal, Giulio Paci
  • Date: 2012-05-19 02:08:30 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120519020830-o59ui1wsfftg55m6
Tags: 0.9.20120331-1
* Upstream update

[ Jonas Smedegaard ]
* Drop local CDBS snippets: All included in main cdbs now.
* Use source format 3.0 (quilt), and stop including patchsys-quilt.mk.
  Stop build-depending on quilt, patchutils.
* Add full licensing header to debian/rules, and update copyright
  years.
* Add README.source (and drop outdated README.cdbs-tweaks).
* Refresh patches with shortening quilt options --no-index
  --no-timestamps -pab, and fix their path prefix.
* Rewrite copyright file using draft DEP-5 format.
* Update control file Vcs-* fields: Packaging moved to Git.
* Ease building with git-buildpackage:
  + Add gbp.conf, enabling pristine-tar and tag signing.
  + Git-ignore quilt .pc dir.
* Bump debhelper compat level to 7.
* Update Vcs-Browser field to use anonscm.debian.org.
* Add Giulio Paci and Jérémy Lal as uploaders, and permit Debian
  Maintainers to upload.

[ Jérémy Lal ]
* Drop patch 1002 to fix capitalized flag: corrected upstream.

[ Giulio Paci ]
* Restart package development.
  Closes: #662175.
* Add patches to fix compilation and documentation.
* Provide JIT flavor on supported architectures (i386 and amd64).
* Bump standards-version to 3.9.3.
* Update copyright file:
  + Adjust licenses now clarified/improved upstream.
* Update ChangeLog.cvs.
* Enable CDBS autogeneration of autotools files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *      sysdeps.h - System dependent definitions for Mac OS X.
3
3
 *                              Based on Unix version
4
4
 *
5
 
 *      $Id: sysdeps.h,v 1.9 2005/01/30 21:42:13 gbeauche Exp $
 
5
 *      $Id: sysdeps.h,v 1.11 2011/03/11 16:47:48 asvitkine Exp $
6
6
 *
7
 
 *      Basilisk II (C) 1997-2005 Christian Bauer
 
7
 *      Basilisk II (C) 1997-2008 Christian Bauer
8
8
 *
9
9
 *      This program is free software; you can redistribute it and/or modify
10
10
 *      it under the terms of the GNU General Public License as published by
65
65
# endif
66
66
#endif
67
67
 
 
68
#if defined(__MACH__)
 
69
#include <mach/clock.h>
 
70
#endif
68
71
 
69
72
/* Symbol to distinguish Nigel's Aqua port from a normal Darwin X11 build */
70
73
/* (this sysdeps.h file is currently specific to the Mac OS X Aqua port)  */
178
181
/* Time data type for Time Manager emulation */
179
182
#ifdef HAVE_CLOCK_GETTIME
180
183
typedef struct timespec tm_time_t;
 
184
#elif defined(__MACH__)
 
185
typedef mach_timespec_t tm_time_t;
181
186
#else
182
187
typedef struct timeval tm_time_t;
183
188
#endif