Changeset bc94b09 in git


Ignore:
Timestamp:
Jul 17, 2017, 5:17:10 PM (7 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d06cbd6330892e86d5fa92f915a7e85525f7e363
Parents:
68f763921ce6e1a565e917a836f0e4891cef7b4b
Message:
chg: factoryVersion -> FACTORYVERSION
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • Singular/misc_ip.cc

    r68f7639 rbc94b09  
    812812              StringAppend("FLINT(%s),",version);
    813813#endif
    814               StringAppend("factory(%s),\n\t", factoryVersion);
     814              StringAppendS("factory(" FACTORYVERSION "),\n\t");
    815815#if defined(HAVE_DYN_RL)
    816816              if (fe_fgets_stdin==fe_fgets_dummy)
  • factory/README

    r68f7639 rbc94b09  
    6464Comments and questions are welcome, too.
    6565
    66   Factory version 1.2c and newer define an external variable
    67 `factoryVersion' describing the version of the library.  The external
     66  Factory version 1.2c and newer define an string
     67`FACTORYVERSION' describing the version of the library.  The external
    6868variable `factoryConfiguration' (not present in versions 1.2c and 1.3a)
    6969describes the options Factory has been configured with.  Please include the
     
    7373
    7474  #include "factory.h"
    75   main() { cout << factoryVersion << "; " << factoryConfiguration << endl; }
     75  main() { cout << FACTORYVERSION << "; " << factoryConfiguration << endl; }
    7676
    77773. Installation
  • factory/cf_globals.cc

    r68f7639 rbc94b09  
    1414#include "config.h"
    1515
    16 
    17 
    18 /** extern const char factoryVersion[];
    19  *
    20  * factoryVersion - factory version string.
    21  *
    22  * factoryVersion is initialized from #define FACTORYVERSION
    23  * which is defined in config.h.  It is not used in factory
    24  * itself.
    25  *
    26 **/
    27 extern const char factoryVersion[] = "@(#) factoryVersion = " FACTORYVERSION;
    28 
    2916/** extern const char factoryConfiguration[];
    3017 *
  • factory/cf_globals.h

    r68f7639 rbc94b09  
    1616/*BEGINPUBLIC*/
    1717
    18 extern const char factoryVersion[];
    1918extern const char factoryConfiguration[];
    2019
  • factory/configure.ac

    r68f7639 rbc94b09  
    392392#AC_SUBST(uninstalltargets)
    393393
    394 factory_version="4.0.1"
     394factory_version="4.1.0"
    395395factory_configuration="'$ac_configure_args' in `pwd`"
    396396AC_SUBST(factory_version)
  • factory/test_install.cc

    r68f7639 rbc94b09  
    1414    // this will try to locate the GF(q) tables
    1515    setCharacteristic( 2, 3, 'Z' );
    16     printf( "%s\n", factoryVersion );
     16    printf( "%s\n", FACTORYVERSION );
    1717    printf( "%s\n", factoryConfiguration );
    1818    printf( "Factory lives!!" );
Note: See TracChangeset for help on using the changeset viewer.