- Package:
- src:ircd-hybrid
- Source:
- src:ircd-hybrid
- Submitter:
- Helmut Grohne
- Date:
- 2024-04-25 18:03:21 UTC
- Severity:
- normal
- Tags:
ircd-hybrid fails to cross build from source, because it uses AC_RUN_IFELSE. This macro doesn't work during cross compilation. Fortunately, it is only ever used for checking whether a compile-time constant is large enough. Such constants can also be extracted using AC_COMPUTE_INT and this macro has special handling for cross compilation. I'm attaching a patch for your convenience. Helmut