14 lines
243 B
Bash
Executable File
14 lines
243 B
Bash
Executable File
#! /bin/sh -x
|
|
|
|
patch -Np0 < configure-implicit-int.patch
|
|
|
|
# Accept license preemptively
|
|
touch src/.accepted
|
|
|
|
# Force a pre-C23 standard so 'bool' and 'false' are not keywords
|
|
export CFLAGS+=" -std=gnu17"
|
|
|
|
./configure --prefix=/usr
|
|
cd src
|
|
make
|