mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-04 03:50:59 +00:00
This updates the minimum required cmake version and the libs that have updates for this. Ogg updated to master as of 20052025 Libsndfile updated to master as of 20052025 Opus minimum cmake version changed vorbis minimum cmake version changed
14 lines
257 B
Bash
14 lines
257 B
Bash
#!/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...."
|
|
|
|
mkdir -p m4
|
|
autoreconf -if
|