Changes between Initial Version and Version 2 of Ticket #29498
- Timestamp:
- 06/30/20 03:39:56 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29498
-
Property
Milestone
changed from
sage-9.1
tosage-9.2
-
Property
Milestone
changed from
-
Ticket #29498 – Description
initial v2 1 1 > Related: is there some way to detect if --enable-gp2c was passed? We shouldn't have to run this code at all, by default. 2 2 3 Unfortunately at this point the SAGE_SPKG_ENABLE calls are emitted after the SAGE_SPKG_CONFIGURE_* calls. 4 This could be changed easily, of course. Related: #29363 3 Unfortunately, although (after a recent change) the `SAGE_SPKG_ENABLE` calls are emitted in `m4/sage_spkg_configures.m4` before the `SAGE_SPKG_CONFIGURE_*` calls, the shell code that sets the "enable" variables still ends up after the shell code from the `SAGE_SPKG_CONFIGURE_*` (because of autoconf reordering magic). 5 4 6 I have this change on the (unfinished) branch of #29054 5 We would have to move the `SAGE_SPKG_ENABLE` calls even earlier, i.e., before the `m4_sinclude`s of the `spkg-configure.m4`. 6 7