Changeset 0a59ea in git
- Timestamp:
- Jun 24, 2010, 3:17:52 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- 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
- Location:
- misc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/auxiliary.h.in
rb9b41a r0a59ea 36 36 /* Define sizeof(long) */ 37 37 #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 38 45 39 46 // ----------------- end of configure stuff -
misc/configure
rb9b41a r0a59ea 3860 3860 3861 3861 3862 # UNAME and PATH 3862 3863 ac_cv_singcpuname=`uname -m` 3863 3864 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_singcpuname" >&5 … … 3928 3929 fi 3929 3930 3931 test "x$prefix" = xNONE && prefix=$ac_default_prefix 3932 if test "${with_rootdir+set}" != set; then 3933 cat >>confdefs.h <<_ACEOF 3934 #define S_ROOT_DIR "${prefix}" 3935 _ACEOF 3936 3937 else 3938 cat >>confdefs.h <<_ACEOF 3939 #define S_ROOT_DIR "${with_rootdir}" 3940 _ACEOF 3941 3942 fi 3930 3943 3931 3944 ac_config_files="$ac_config_files Makefile" -
misc/configure.ac
rb9b41a r0a59ea 27 27 AC_CHECK_SIZEOF(long,4) 28 28 29 # UNAME and PATH 29 30 ac_cv_singcpuname=`uname -m` 30 31 AC_MSG_RESULT($ac_cv_singcpuname) … … 82 83 fi 83 84 85 test "x$prefix" = xNONE && prefix=$ac_default_prefix 86 if test "${with_rootdir+set}" != set; then 87 AC_DEFINE_UNQUOTED(S_ROOT_DIR, "${prefix}") 88 else 89 AC_DEFINE_UNQUOTED(S_ROOT_DIR, "${with_rootdir}") 90 fi 84 91 85 92 AC_CONFIG_FILES([Makefile])
Note: See TracChangeset
for help on using the changeset viewer.