Files
cpython/configure.ac
Greg Shuflin 157934eb4b Build: Add section headers to organize configure.ac
The configure.ac file has grown to 8,200+ lines, making it difficult
to navigate and understand its organization. This adds 5 major section
headers to divide the file into logical groups:

Section 1 (line 137): Platform and Build Configuration Detection
  - Platform triplet detection, cross-compilation setup

Section 2 (line 1070): Compiler Detection and Configuration
  - C/C++ compiler detection and characteristics

Section 3 (line 1731): Python Build Feature Flags
  - --disable-gil, --with-pydebug, --enable-optimizations, etc.

Section 4 (line 7840): Standard Library Extension Module Configuration
  - PY_STDLIB_MOD macro and module dependency detection

Section 5 (line 4054): External Library Dependencies
  - System and third-party library detection

These are comment-only changes that do not affect the generated
configure script. They make the file more maintainable and help
developers quickly locate relevant sections.
2025-11-15 00:36:10 -08:00

265 KiB