Skip to content

conf: fix --enable-debug option #12

conf: fix --enable-debug option

conf: fix --enable-debug option #12

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install -yq \
build-essential clang clang-tools autotools-dev autoconf libtool \
libgpod-dev \
libglib2.0-dev \
libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev libavutil-dev \
libjson-c-dev
- name: configure
run: |
autoreconf --install
autoconf
./configure
- name: make
run: make