diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-07-12 12:31:13 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-07-12 12:31:13 +0000 |
commit | ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2 (patch) | |
tree | 2da90cafcf53ca75af95ae22c8e9269a55447e4b /src/libxineadec | |
parent | 7329ae3b83a71b6bc9b55c659a582afb307acd08 (diff) | |
download | xine-lib-ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2.tar.gz xine-lib-ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2.tar.bz2 |
- adding support for the Intel compiler icc
- general multipass compilation make targets
CVS patchset: 5149
CVS date: 2003/07/12 12:31:13
Diffstat (limited to 'src/libxineadec')
-rw-r--r-- | src/libxineadec/nosefart/osd.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libxineadec/nosefart/osd.h b/src/libxineadec/nosefart/osd.h index b021a3837..ee90aa972 100644 --- a/src/libxineadec/nosefart/osd.h +++ b/src/libxineadec/nosefart/osd.h @@ -20,14 +20,14 @@ ** osd.h ** ** O/S dependent routine defintions (must be customized) -** $Id: osd.h,v 1.1 2003/01/08 07:04:35 tmmm Exp $ +** $Id: osd.h,v 1.2 2003/07/12 12:31:14 mroi Exp $ */ #ifndef _OSD_H_ #define _OSD_H_ -#ifdef __GNUC__ +#if defined(__GNUC__) || defined(__ICC) #define __PACKED__ __attribute__ ((packed)) #define PATH_SEP '/' #ifdef __DJGPP__ @@ -79,6 +79,10 @@ extern void osd_shutdown(void); /* ** $Log: osd.h,v $ +** Revision 1.2 2003/07/12 12:31:14 mroi +** - adding support for the Intel compiler icc +** - general multipass compilation make targets +** ** Revision 1.1 2003/01/08 07:04:35 tmmm ** initial import of Nosefart sources ** |