Skip to content

Commit

Permalink
Execute autogen.sh to obtain the configure build system
Browse files Browse the repository at this point in the history
Fixes the configure file not being found. I missed out on that, as - apparently - I must have executed the autogen.sh by mistake
  • Loading branch information
callisto-jovy authored Oct 21, 2023
1 parent 6d205c4 commit 045ef68
Showing 1 changed file with 26 additions and 15 deletions.
41 changes: 26 additions & 15 deletions ffmpeg/cppbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ EOF
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=arm-linux
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=arm-linux
make -j $MAKEJ
make install

Expand Down Expand Up @@ -417,7 +418,8 @@ EOF
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=aarch64-linux
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=aarch64-linux
make -j $MAKEJ
make install

Expand Down Expand Up @@ -564,7 +566,8 @@ EOF
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=i686-linux
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=i686-linux
make -j $MAKEJ
make install

Expand Down Expand Up @@ -710,7 +713,8 @@ EOF
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=x86_64-linux
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=x86_64-linux
make -j $MAKEJ
make install

Expand Down Expand Up @@ -855,7 +859,8 @@ EOF
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=i686-linux CFLAGS="-m32"
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=i686-linux CFLAGS="-m32"
make -j $MAKEJ
make install

Expand Down Expand Up @@ -1000,7 +1005,8 @@ EOF
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=x86_64-linux CFLAGS="-m64"
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=x86_64-linux CFLAGS="-m64"
make -j $MAKEJ
make install

Expand Down Expand Up @@ -1356,8 +1362,9 @@ EOF
make -j $MAKEJ
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --target=armv8-linux-gcc
cd ../../zimg-$ZIMG_VERSION
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --target=armv8-linux-gcc
make -j $MAKEJ
make install

Expand Down Expand Up @@ -1711,8 +1718,9 @@ EOF
make -j $MAKEJ
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --target=generic-gnu
cd ../../zimg-$ZIMG_VERSION
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --target=generic-gnu
make -j $MAKEJ
make install

Expand Down Expand Up @@ -1840,8 +1848,9 @@ EOF
make -j $MAKEJ
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic
cd ../../zimg-$ZIMG_VERSION
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic
make -j $MAKEJ
make install

Expand Down Expand Up @@ -1978,7 +1987,8 @@ EOF
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=i686-w64-mingw32
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=i686-w64-mingw32
make -j $MAKEJ
make install

Expand Down Expand Up @@ -2114,8 +2124,9 @@ EOF
make -j $MAKEJ
make install

cd ../../zimg-$ZIMG_VERSION
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=x86_64-w64-mingw32
cd ../../zimg-$ZIMG_VERSION
bash autogen.sh
./configure --prefix=$INSTALL_PATH --enable-static --disable-shared --with-pic --host=x86_64-w64-mingw32
make -j $MAKEJ
make install

Expand Down

0 comments on commit 045ef68

Please sign in to comment.