Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4680 right-hear 1
#ifndef __GPL_stuff_h__
2
#define __GPL_stuff_h__
3
 
4
#define GPL_base_text \
5
"Yacas is Free Software--Free as in Freedom--so you can redistribute Yacas or\n" \
6
"modify it under certain conditions. Yacas comes with ABSOLUTELY NO WARRANTY.\n" \
7
"See the GNU General Public License (GPL) for the full conditions.\n"
8
 
9
#define Yacas_Web_info \
10
"See http://yacas.sf.net for more information and documentation on Yacas.\n"
11
 
12
#define Yacas_help_info \
13
"Type ?license or ?licence to see the GPL; type ?warranty for warranty info.\n"
14
 
15
// This is the full text for systems where the online help (?blah) is available
16
#define GPL_blurb GPL_base_text Yacas_help_info Yacas_Web_info "\n"
17
 
18
// This is for systems where online help (?blah) is normally not available
19
#define GPL_blurb_nohelp GPL_base_text Yacas_Web_info "\n"
20
 
21
 
22
 
23
#endif