From 6ab1c7919b1b16090e88c01d7ab3563abc76abe8 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Wed, 1 Nov 2023 11:25:32 -0400 Subject: [PATCH] Explicitly set the `make` compiler to `cc`. This makes it work out of the box on GNU systems where GNU make defaults to c99, which doesn't accept -std=c89. --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index bdb915b..e217c47 100755 --- a/configure +++ b/configure @@ -195,6 +195,7 @@ cat << EOF > Makefile # Generated by '$0' on $(date). # This file should generally not be manually edited. +CC = cc PREFIX = ${PREFIX} CFLAGS = ${CFLAGS} LDFLAGS = ${LDFLAGS}