~ubuntu-branches/ubuntu/vivid/oss4/vivid

« back to all changes in this revision

Viewing changes to debian/patches/002_fix-linux-oss_native_word.patch

  • Committer: Package Import Robot
  • Author(s): Sebastien NOEL, Sebastien NOEL, Benda Xu
  • Date: 2014-10-23 22:47:56 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20141023224756-ugge2zw3qib5ldip
Tags: 4.2-build2010-1
[ Sebastien NOEL ]
* New upstream release.
  - fix build with recent kernel. (Closes: #696751)
* Add build dependency on libtool-bin. (Closes: #761783)

[ Benda Xu ]
* Use debhelper 9.
* Bump to standard 3.9.6.
* Add Benda Xu to uploaders.
* Run wrap-and-sort.
* Canonicalize Vcs-Svn field and add Vcs-Browser field.
* Get rid of limits.h copy hack, leverage include-fixed from gcc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
  * Some integer types
17
17
  */
18
18
-#if defined(__x86_64__)
19
 
-typedef unsigned long long oss_native_word;    /* Same as the address and status register size */
 
19
 typedef unsigned long oss_native_word; /* Same as the address and status register size */
20
20
-#else
21
 
 typedef unsigned long oss_native_word; /* Same as the address and status register size */
 
21
-typedef unsigned long oss_native_word; /* Same as the address and status register size */
22
22
-#endif
23
23
 typedef long long oss_int64_t;                 /* Signed 64 bit integer */
24
24
 typedef unsigned long long oss_uint64_t;       /* Unsigned 64 bit integer */
25
25
 
 
26