Changeset ed6f2b in git


Ignore:
Timestamp:
Jun 17, 2020, 4:09:05 PM (3 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
6e12a4509235103a5e009837c0a1ae25ff078e5b
Parents:
48e0bcb3839c4f7cc786ac37fa187054f0536239e4514d3151a5c53437b9fa2f30bda8febfd87539
Message:
Merge branch 'fingolfin-mh/fix' into spielwiese
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/Makefile.am

    r48e0bcb red6f2b  
    112112
    113113templates/p_Procs.inc: p_Procs_Generate.cc
    114         $(MAKE) $(AM_MAKEFLAGS) CXX="$(CXX_FOR_BUILD)" p_Procs_Generate
     114        $(MAKE) $(AM_MAKEFLAGS) CXX="$(CXX_FOR_BUILD)" CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" LDFLAGS="" LIBS="" p_Procs_Generate
    115115        ./p_Procs_Generate$(BUILD_EXEEXT) > ./templates/p_Procs.inc
    116116
  • m4/ax_prog_cxx_for_build.m4

    r48e0bcb red6f2b  
    3232#   warranty.
    3333
    34 #serial 3
     34#serial 4
    3535
    3636AU_ALIAS([AC_PROG_CXX_FOR_BUILD], [AX_PROG_CXX_FOR_BUILD])
     
    5050pushdef([CXX], CXX_FOR_BUILD)dnl
    5151pushdef([CXXCPP], CXXCPP_FOR_BUILD)dnl
     52pushdef([GXX], GXX_FOR_BUILD)dnl
    5253pushdef([CXXFLAGS], CXXFLAGS_FOR_BUILD)dnl
    5354pushdef([CPPFLAGS], CPPFLAGS_FOR_BUILD)dnl
     
    6364pushdef([ac_cv_host_vendor], ac_cv_build_vendor)dnl
    6465pushdef([ac_cv_host_os], ac_cv_build_os)dnl
    65 pushdef([ac_cxxcpp], ac_build_cxxcpp)dnl
    66 pushdef([ac_compile], ac_build_compile)dnl
    67 pushdef([ac_link], ac_build_link)dnl
     66pushdef([ac_tool_prefix], ac_build_tool_prefix)dnl
     67pushdef([am_cv_CXX_dependencies_compiler_type], am_cv_build_CXX_dependencies_compiler_type)dnl
     68pushdef([cross_compiling], cross_compiling_build)dnl
    6869
    69 save_cross_compiling=$cross_compiling
    70 save_ac_tool_prefix=$ac_tool_prefix
    71 cross_compiling=no
    72 ac_tool_prefix=
     70cross_compiling_build=no
    7371
     72ac_build_tool_prefix=
     73AS_IF([test -n "$build"],      [ac_build_tool_prefix="$build-"],
     74      [test -n "$build_alias"],[ac_build_tool_prefix="$build_alias-"])
     75
     76AC_LANG_PUSH([C++])
    7477AC_PROG_CXX
    7578AC_PROG_CXXCPP
    7679
    77 ac_tool_prefix=$save_ac_tool_prefix
    78 cross_compiling=$save_cross_compiling
    79 
    8080dnl Restore the old definitions
    8181dnl
    82 popdef([ac_link])dnl
    83 popdef([ac_compile])dnl
    84 popdef([ac_cxxcpp])dnl
     82popdef([cross_compiling])dnl
     83popdef([am_cv_CXX_dependencies_compiler_type])dnl
     84popdef([ac_tool_prefix])dnl
    8585popdef([ac_cv_host_os])dnl
    8686popdef([ac_cv_host_vendor])dnl
     
    104104popdef([ac_cv_prog_CXXCPP])dnl
    105105
     106dnl restore global variables (dependant on the current
     107dnl language after popping):
     108AC_LANG_POP([C++])
     109
    106110dnl Finally, set Makefile variables
    107111dnl
  • omalloc/Makefile.am

    r48e0bcb red6f2b  
    4141
    4242omTables.inc:
    43         $(MAKE) $(AM_MAKEFLAGS) CC="${CC_FOR_BUILD}" omTables
     43        $(MAKE) $(AM_MAKEFLAGS) CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" LDFLAGS="$(LDFLAGS_FOR_BUILD)" omTables
    4444        ./omTables$(BUILD_EXEEXT) > omTables.xx && mv omTables.xx  omTables.inc
    4545
    4646omTables.h:
    47         $(MAKE) $(AM_MAKEFLAGS) CC="${CC_FOR_BUILD}" omTables1
     47        $(MAKE) $(AM_MAKEFLAGS) CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" LDFLAGS="$(LDFLAGS_FOR_BUILD)" omTables1
    4848        ./omTables1$(BUILD_EXEEXT) >omTables.yy && mv omTables.yy omTables.h
    4949
Note: See TracChangeset for help on using the changeset viewer.