mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2024-11-13 07:57:45 +00:00
5ad478f95b
This commit add all commits from latest stable 1.3.3 release. These concern only build fixes. Commits f4dbd92 to 83605a7 from https://git.xiph.org/ogg.git
13 lines
267 B
Bash
Executable file
13 lines
267 B
Bash
Executable file
#!/bin/sh
|
|
# Run this to set up the build system: configure, makefiles, etc.
|
|
set -e
|
|
|
|
package="libogg"
|
|
|
|
srcdir=`dirname $0`
|
|
test -n "$srcdir" && cd "$srcdir"
|
|
|
|
echo "Updating build configuration files for $package, please wait...."
|
|
|
|
ACLOCAL_FLAGS="-I m4"
|
|
autoreconf -if
|