diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-11-26 11:42:57 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-11-26 11:42:57 +0000 |
commit | eb93e2fbb56b52d0a495460050197a5dada67409 (patch) | |
tree | 155d409b165aa19f057468c6e44a24d21250bf47 | |
parent | 4a1eb8b09fce7d9e36b69f1de6b262228f07842e (diff) | |
download | xine-lib-eb93e2fbb56b52d0a495460050197a5dada67409.tar.gz xine-lib-eb93e2fbb56b52d0a495460050197a5dada67409.tar.bz2 |
Fix '../../config.h:151:2: #endif without #if' error in generated config.h file
CVS patchset: 1114
CVS date: 2001/11/26 11:42:57
-rw-r--r-- | acconfig.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/acconfig.h b/acconfig.h index 16853add6..e0f1b61cc 100644 --- a/acconfig.h +++ b/acconfig.h @@ -1,5 +1,6 @@ #ifndef _CONFIG_H_ #define _CONFIG_H_ +@TOP@ #undef XINE_MAJOR #undef XINE_MINOR @@ -97,7 +98,7 @@ @BOTTOM@ /* Disable GCC compiler extensions, if gcc is not in use */ #ifndef __GNUC__ -#define __attribute__(x) /**/ +#define __attribute__(x) /*empty*/ #endif -#endif +#endif /* _CONFIG_H_ */ |