autotools: Rewrite configuration in a minimalistic fashion

Drop the per-codec options while at it, since we'll soon include a copy
of the associated headers.

Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
This commit is contained in:
Paul Kocialkowski
2019-03-07 10:20:37 +01:00
parent 518d7a0c59
commit e29b04ccc7
7 changed files with 136 additions and 211 deletions
+5 -4
View File
@@ -1,7 +1,8 @@
#! /bin/sh
#!/bin/sh
autoreconf -v --install
autoreconf -vi
if test -z "$NOCONFIGURE"; then
./configure "$@"
if [ -z "$NOCONFIGURE" ]
then
./configure "$@"
fi