Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / system / AboutAROS / scripts / sponsors2header.py
blob8a6c602dec2f8b5683e8d4c6d61c202f8941f1d7
1 #!/bin/env python
2 # -*- coding: iso-8859-15 -*-
4 import sys
6 sys.stdout.write('''#ifndef _SPONSORS_H_
7 #define _SPONSORS_H_
9 /*
10 Copyright © 2003, The AROS Development Team. All rights reserved.
11 ****** This file is automatically generated. DO NOT EDIT! *******
14 #include <utility/tagitem.h>
15 #include <zune/aboutwindow.h>
17 struct TagItem *SPONSORS = TAGLIST
19 SECTION
21 SID_NONE''')
23 for line in sys.stdin:
24 sys.stdout.write(',\n NAME("%s")' % line.strip())
26 print '''\n ),
27 TAG_DONE
30 #endif /* _SPONSORS_H_ */'''