Changeset 10286 for trunk/psLib/src/sys/psConfigure.c
- Timestamp:
- Nov 29, 2006, 11:33:09 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psConfigure.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psConfigure.c
r10284 r10286 13 13 * @author Robert DeSonia, MHPCC 14 14 * 15 * @version $Revision: 1.1 7$ $Name: not supported by cvs2svn $16 * @date $Date: 2006-11-29 2 0:24:19 $15 * @version $Revision: 1.18 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2006-11-29 21:33:09 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 34 34 static FILE *memCheckFile = NULL; // File to which to write results of mem check 35 35 36 static const char *cvsTag = "$Name: not supported by cvs2svn $"; // CVS tag name 37 36 38 psString psLibVersion(void) 37 39 { 38 psString version = NULL; 39 psStringAppend(&version, "%s-v%s",PACKAGE_NAME,PACKAGE_VERSION); 40 psString version = NULL; // Version, to return 41 psStringAppend(&version, "%s-%s",PACKAGE_NAME,PACKAGE_VERSION); 42 return version; 43 } 44 45 psString psLibVersionLong(void) 46 { 47 psString version = psLibVersion(); // Version, to return 48 psString tag = psStringStripCVS(cvsTag, "Name"); // CVS tag 49 50 psStringAppend(&version, " (cvs tag %s) compiled %s at %s with" 51 #ifdef OMIT_PSDB 52 "out" 53 #endif 54 " psDB", tag, __DATE__, __TIME__); 55 56 psFree(tag); 40 57 return version; 41 58 }
Note:
See TracChangeset
for help on using the changeset viewer.
