Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: ac-os build — don't pass USE_SDL unless explicitly set

Makefile's ifdef USE_SDL triggers on any value including 0.
Now only passes USE_SDL=1 when USE_SDL env var is explicitly "1".
Fixes build failure in devcontainers without SDL3 headers.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+3 -1
+3 -1
fedac/native/ac-os
··· 49 49 # Run make and capture exit code — version strings frozen at top of script 50 50 mkdir -p "${BUILD_DIR}" 51 51 local MAKE_LOG="${BUILD_DIR}/.make.log" 52 - make -j$(nproc) CC="${CC_USE}" USE_SDL=1 BUILD_TS="${AC_BUILD_TS}" GIT_HASH="${AC_GIT_HASH}" BUILD_NAME="${AC_BUILD_NAME}" > "${MAKE_LOG}" 2>&1 52 + local SDL_FLAG="" 53 + if [ "${USE_SDL:-}" = "1" ]; then SDL_FLAG="USE_SDL=1"; fi 54 + make -j$(nproc) CC="${CC_USE}" ${SDL_FLAG} BUILD_TS="${AC_BUILD_TS}" GIT_HASH="${AC_GIT_HASH}" BUILD_NAME="${AC_BUILD_NAME}" > "${MAKE_LOG}" 2>&1 53 55 local MAKE_RC=$? 54 56 grep -E "Built:|error:" "${MAKE_LOG}" || true 55 57 if [ ${MAKE_RC} -ne 0 ]; then