diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-20 01:40:34 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-20 01:40:34 +0000 |
commit | 89db20fe174c88f784b44743064ca1a9ba4b42f2 (patch) | |
tree | bfa9ac1600f107afe14cc61b36cc941aa340ed00 | |
parent | 07849a7ff002d20238583eae194fb6056c90e073 (diff) | |
download | xine-lib-89db20fe174c88f784b44743064ca1a9ba4b42f2.tar.gz xine-lib-89db20fe174c88f784b44743064ca1a9ba4b42f2.tar.bz2 |
Another couple of fixes for OSX support by Martin Aumueller, although Win32 support seems to still not work there.
CVS patchset: 8734
CVS date: 2007/03/20 01:40:34
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/libw32dll/wine/pshpack1.h | 2 | ||||
-rw-r--r-- | src/libw32dll/wine/pshpack2.h | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -41,6 +41,8 @@ xine-lib (1.1.5) (Unreleased) Patch by Reinhard Nissl. * Fix support of block devices for AC3 and DTS demuxers. Thanks to Matthias Kretz for the original patch. + * Portability fixes for Mac OS X, in particular Mac OS X on the new Intel + Macs. Thanks to Martin Aumueller and Emanuele Giaquinta. xine-lib (1.1.4) * Mark string-type configuration items according to whether they're plain diff --git a/src/libw32dll/wine/pshpack1.h b/src/libw32dll/wine/pshpack1.h index 659b2ed67..15876039c 100644 --- a/src/libw32dll/wine/pshpack1.h +++ b/src/libw32dll/wine/pshpack1.h @@ -2,7 +2,7 @@ #define __WINE_PSHPACK_H 1 #if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || defined(__ICC) -//#pragma pack(1) +#pragma pack(1) #elif !defined(RC_INVOKED) #error "1 as alignment isn't supported by the compiler" #endif /* defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) ; !defined(RC_INVOKED) */ diff --git a/src/libw32dll/wine/pshpack2.h b/src/libw32dll/wine/pshpack2.h index a0830be0b..0145d8b13 100644 --- a/src/libw32dll/wine/pshpack2.h +++ b/src/libw32dll/wine/pshpack2.h @@ -2,7 +2,7 @@ #define __WINE_PSHPACK_H 2 #if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || defined(__ICC) -//#pragma pack(2) +#pragma pack(2) #elif !defined(RC_INVOKED) #error "2 as alignment isn't supported by the compiler" #endif /* defined(__GNUC__) || defined(__SUNPRO_CC) ; !defined(RC_INVOKED) */ |