Questions tagged [autogen]

AutoGen - The Automated Program Generator of GNU Operating System. AutoGen is a tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text. It is especially valuable in programs that have several blocks of text that must be kept synchronized.

Definition:

According to the Official AutoGen Home Page:

AutoGen is a tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text. It is especially valuable in programs that have several blocks of text that must be kept synchronized.

AutoGen stands for Automated Program Generator (GNU).

Important Links:

44 questions
2
votes
1 answer

why autogen.sh failed even with the correct autoconf?

autogen.sh failed, the output shows that i need an autoconf of higher version. but in fact i have a 2.6x autoconf.... why it still failed? [mirror@home 4]$ ./autogen.sh + autoreconf -i -f -v autoreconf: Entering directory `.' autoreconf:…
hugemeow
  • 7,777
  • 13
  • 50
  • 63
1
vote
1 answer

How to handle FFmpeg hardware decoder initialisation failure

I'm using the FFmpege.AutoGen library in my project and found a crash on a video using hardware decoding. So I went back to the example and tested it there and found the same result. The example reports the following Current directory:…
Bernie
  • 15
  • 5
1
vote
0 answers

Problems packaging on buster

I'm trying to build some packages from source, and I'm facing trouble that I don't understand despite lots of googling. This happens with some packages, while others compile and get packed normally. One of the softwares that fail to package is…
1
vote
0 answers

fribidi autogen.sh script failing: "autoreconf: error: automake failed with exit status: 1"

I am trying to install fribidi, but I am getting the following error when running the autogen.sh script: -n checking for pkg-config... /usr/local/bin/pkg-config -n checking for libtoolize... /usr/local/bin/glibtoolize -n checking for…
angds274
  • 23
  • 6
1
vote
1 answer

Is there another way to export a frame in ffmpeg to a texture2d? My code working in Windows but not Linux

Sound is working in Linux the same as it did in Windows. But the video is just a black screen and when I attempt to save the frames as BMP files all of them were corrupt/empty files. I am using Ffmpeg.Autogen to interface with the libraries.…
1
vote
1 answer

Extract audio from video using autogen ffmpeg C# in Unity

Hi I'm using ffmpeg autogen to extract audio from video in Unity, but when I following this code, the file write cannot write, it's 0Kb, so what's issue of this or someone have any examples for extract audio using this library, apologize for my…
1
vote
2 answers

I've installed libcurl 7.51, but autogen could not recognize it

I'm trying to install cgminer. using the instructions: # git clone https://github.com/ckolivas/cgminer # cd cgminer && git checkout v3.1.1 # cd ADL_SDK && wget http://www.lurkmore.com/mining/ADL_SDK.zip && unzip -j ADL_SDK.zip 'include/adl_*.h' #…
Ricardo Brandao
  • 141
  • 1
  • 3
  • 14
1
vote
1 answer

Graph-tool/Autoconf - configure.ac:39: error: possibly undefined macro: PKG_INSTALLDIR

I have been trying to compile graph-tool from source. When running ./autogen.sh I receive the following error message: libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. configure.ac:39: error: possibly undefined macro:…
P-M
  • 1,279
  • 2
  • 21
  • 35
1
vote
1 answer

Cross-compiling for Windows Python error

I try to cross-compile libplist (https://github.com/libimobiledevice/libplist) for 64-bit Windows and create a DLL from it. I downloaded mingw-w64 for Linux subsystem on Windows 10 (Ubuntu 14.04 bash) and set the environment variables (CC, CXX, CPP,…
András Geiszl
  • 966
  • 2
  • 16
  • 36
1
vote
0 answers

Errors when Compiling Mono on Windows via Cygwin

I follow this tutorial: http://www.mono-project.com/docs/compiling-mono/windows/ I have downloaded the Mono source code from GitHub (as of today). My autogen command line is as follows: sh autogen.sh --host=i686-pc-mingw32 I've got two autogen…
MazeGen
  • 180
  • 3
  • 14
1
vote
0 answers

Build script to generate library using automake

I want to create a library (Ubuntu, shared or static) from C++ source code. The given source code includes a main() function in "outFile.cpp". I want to write my own main.cpp file that should be linked to the library like "g++ -lMyLibrary.a"…
user3521269
  • 458
  • 3
  • 9
1
vote
1 answer

./autogen error while building linphone for windows

I have downloaded the Linphone opensource and build using MinGW. I have followed the steps given by the README.mingw. When I use the command "./autogen.sh" to automake the belle-sip, I got the following error.I guess there might be some problems…
Nimal
  • 11
  • 3
1
vote
1 answer

Should I provide ./autogen.sh to build for end users?

I've started a new project in git and use ./autogen.sh and xfce4-dev-tools to generate configure script and others files. I'm wondering if it's a bad idea to only provide git release or I need to create dist tarball also?
cedric
  • 11
  • 1
0
votes
0 answers

System.AccessViolationException on avcodec_open2 using FFMpeg.AutoGen

I am using FFMpeg.AutoGen (v6.0.0.2) with hwencode support for Nvidia cards, and in few devices (for example on NVIDIA GeForce MX350) when I am doing fffmpeg.avcodec_open2 I got the following ffmpeg message in logs: [h264_nvenc @ 000001f473fcc480]…
forlayo
  • 1,371
  • 2
  • 13
  • 23
0
votes
0 answers

How to free an AVBuffer and prevent a memory leak, when created with FFmpeg.AutoGen

Regarding https://github.com/Ruslan-B/FFmpeg.AutoGen.Questions/issues/36. I am using FFmpeg.AutoGen to inject per-Frame Metadata into a video in my C# program via an H.264 SEI Message. Works great. To do so I use av_frame_new_side_data_from_buf(),…
FrostKiwi
  • 741
  • 1
  • 6
  • 16