1 /*
2     Gri - A language for scientific graphics programming
3     Copyright (C) 2011 Daniel Kelley
4 
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; version 3 of the License, or
8     (at your option) any later version.
9 
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14 
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 // NB: _gri_number will be checked against line 1 of gri.cmd
21 #ifdef OSX_BUNDLE
22 char _gri_number[] = PACKAGE_VERSION;
23 #else
24 // Don't ask me why, but I used to do
25 //        #define stringify(x) # x
26 //        char _gri_number[] = stringify(VERSION);
27 // here.  I think I was messing with the OSX bundle release,
28 // but whatever I was doing, it sems not to be needed.  I'll
29 // just leave it here for a while, though.
30 // DEK 2005-12-18
31 //
32 char _gri_number[] = PACKAGE_VERSION;
33 #endif
34 char _gri_release_time[] = "2011-07-07";
35 char _gri_date[] = "2011";
36