1
0
Fork 0

Autoconf 2.69

This commit is contained in:
Moritz Grimm 2022-08-20 23:00:30 +02:00
parent 708e59f90b
commit 429654218b
3 changed files with 4 additions and 3 deletions

1
NEWS
View File

@ -3,6 +3,7 @@ Changes in 1.NNN, released on YYYY-MM-DD:
* Fix regression when streaming formats other than Ogg (e.g. MP3). From
zygmund2000 on Github (#30) and Roland Hermans on GitLab (#2271).
* Fix build issue on OSX. From Mitchell Blank on GitLab (#2270).
* Update autoconf requirement to 2.69

View File

@ -10,7 +10,7 @@ if [ ! -f "./$(basename $0)" ]; then
exit 1
fi
USE_LIBTOOL="$(grep AC_PROG_LIBTOOL ./configure.* 2> /dev/null)"
USE_LIBTOOL="$(grep ^LT_INIT ./configure.* 2> /dev/null)"
EXTRA=
if [ -d m4 ]; then

View File

@ -3,7 +3,7 @@ dnl ## SETUP ###########################################################
dnl ###########
AC_INIT([ezstream], [1.0.2], [https://gitlab.xiph.org/xiph/ezstream/issues])
AC_PREREQ([2.61])
AC_PREREQ([2.69])
AC_CONFIG_SRCDIR([src/ezstream.c])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE
@ -29,7 +29,7 @@ AC_ARG_ENABLE([examplesdir],
esac], [])
AC_SUBST([EXAMPLES_DIR])
AC_PROG_LIBTOOL
LT_INIT
AC_SUBST([LIBTOOL_DEPS])
EZ_CFLAGS=""