Changeset 0a59ea in git for misc


Ignore:
Timestamp:
Jun 24, 2010, 3:17:52 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
ac554b635ecc4035e40f78f0f57002d594f16ba5
Parents:
b9b41ae9680122445a516f1909392be2f6f1e4f9
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2010-06-24 15:17:52+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:19+01:00
Message:
path settings
Location:
misc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • misc/auxiliary.h.in

    rb9b41a r0a59ea  
    3636/* Define sizeof(long) */
    3737#define SIZEOF_LONG 4
     38
     39/* Define version as a string */
     40#define S_VERSION1 "spielwiese"
     41
     42/* Absolute pathname of root directory of Singular source */
     43#define S_ROOT_DIR ""
     44
    3845
    3946// ----------------- end of configure stuff
  • misc/configure

    rb9b41a r0a59ea  
    38603860
    38613861
     3862# UNAME and PATH
    38623863ac_cv_singcpuname=`uname -m`
    38633864{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_singcpuname" >&5
     
    39283929fi
    39293930
     3931test "x$prefix" = xNONE && prefix=$ac_default_prefix
     3932if test "${with_rootdir+set}" != set; then
     3933  cat >>confdefs.h <<_ACEOF
     3934#define S_ROOT_DIR "${prefix}"
     3935_ACEOF
     3936
     3937else
     3938  cat >>confdefs.h <<_ACEOF
     3939#define S_ROOT_DIR "${with_rootdir}"
     3940_ACEOF
     3941
     3942fi
    39303943
    39313944ac_config_files="$ac_config_files Makefile"
  • misc/configure.ac

    rb9b41a r0a59ea  
    2727AC_CHECK_SIZEOF(long,4)
    2828
     29# UNAME and PATH
    2930ac_cv_singcpuname=`uname -m`
    3031AC_MSG_RESULT($ac_cv_singcpuname)
     
    8283fi
    8384
     85test "x$prefix" = xNONE && prefix=$ac_default_prefix
     86if test "${with_rootdir+set}" != set; then
     87  AC_DEFINE_UNQUOTED(S_ROOT_DIR, "${prefix}")
     88else
     89  AC_DEFINE_UNQUOTED(S_ROOT_DIR, "${with_rootdir}")
     90fi
    8491
    8592AC_CONFIG_FILES([Makefile])
Note: See TracChangeset for help on using the changeset viewer.