Changeset eeae6e3 in git


Ignore:
Timestamp:
Sep 12, 2011, 1:57:48 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d6039dfbb647e2775d91661b9541f7600bf05058
Parents:
4c96a0cd273d9c6ff0433025794e8092191e18e7
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-12 13:57:48+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:43+01:00
Message:
FIX: the use of "om_sing_opt_show_mem" in Singular/misc_ip.cc now depends on whether "--with-external-config_h=../Singular/omSingularConfig.h" was used, which is thus not necessary for building Singular anymore
CHG: minor cleanup in configure.ac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/misc_ip.cc

    r4c96a0 reeae6e3  
    677677  } while (v!=NULL);
    678678   
    679   // set global variable to show memory usage
     679#ifdef OM_SINGULAR_CONFIG_H
     680   // set global variable to show memory usage
    680681  extern int om_sing_opt_show_mem;
    681682  if (BVERBOSE(V_SHOW_MEM)) om_sing_opt_show_mem = 1;
    682683  else om_sing_opt_show_mem = 0;
     684#endif
    683685   
    684686  return FALSE;
  • configure.ac

    r4c96a0 reeae6e3  
    1616
    1717
    18 #if test x$ac_configure_args != x; then
    19 #  old_ac_configure_args="$ac_configure_args"
    20 #  ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h"
    21 #else
    22 #  old_ac_configure_args=""
    23 #fi
    24 
    25 ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h"
     18### the following is needed due to the use of om_sing_opt_show_mem in misc_ip.cc...
     19#ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h"
    2620
    2721AC_CONFIG_SUBDIRS(omalloc)
    28 
    29 # ac_configure_args="$old_ac_configure_args"
    3022
    3123if test x$ENABLE_FACTORY = xyes; then
Note: See TracChangeset for help on using the changeset viewer.