IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11712


Ignore:
Timestamp:
Feb 8, 2007, 1:28:23 PM (19 years ago)
Author:
Paul Price
Message:

Fixing apparent gcc 3.4.3 problem with preprocessor statements within a macro function.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psConfigure.c

    r11617 r11712  
    1313 *  @author Robert DeSonia, MHPCC
    1414 *
    15  *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    16  *  @date $Date: 2007-02-03 05:54:08 $
     15 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     16 *  @date $Date: 2007-02-08 23:28:23 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5151    psString tag = psStringStripCVS(cvsTag, "Name"); // CVS tag
    5252
    53     psStringAppend(&version, " (cvs tag %s), %s, %s with"
    54                    #ifdef HAVE_PSDB
    55                    "out"
    56                    #endif
    57                    " psDB", tag, __DATE__, __TIME__);
    58 
     53#ifdef HAVE_PSDB
     54    psStringAppend(&version, " (cvs tag %s), %s, %s with psDB", tag, __DATE__, __TIME__);
     55#else
     56    psStringAppend(&version, " (cvs tag %s), %s, %s without psDB", tag, __DATE__, __TIME__);
     57#endif
    5958    psFree(tag);
    6059    return version;
Note: See TracChangeset for help on using the changeset viewer.