summaryrefslogtreecommitdiff
path: root/autogen.sh
Commit message (Collapse)AuthorAgeFilesLines
* autotools: use LT_INIT instead of obsolete AM_PROG_LIBTOOLevpobr2018-02-121-0/+1
| | | | Signed-off-by: Tristan Matthews <tmatth@videolan.org>
* Remove spurious ACLOCAL_FLAGS variable from autogen.sh.Ralph Giles2015-09-251-1/+0
| | | | | | | autoreconf looks for ACLOCAL_*FLAGS in Makefile.am and will pass that on when it invokes aclocal. Furthermore, setting a local like this doesn't make it available to subcommands, so the line has no effect.
* Simplify autogen.shRalph Giles2015-05-201-119/+5
| | | | | | | | | | Copy the autogen.sh script from the newer daala project. This just calls autoreconf instead of doing its own tool and version detection. Note that this now means one must explicitly invoke ./configure like in the opus and daala projects. ./autogen.sh will no longer do so.
* Port automake 1.10 support from libtheora.Ralph Giles2008-01-181-12/+16
| | | | svn path=/trunk/ogg/; revision=14412
* Check for automake 1.10.Ralph Giles2008-01-041-1/+2
| | | | svn path=/trunk/ogg/; revision=14358
* Propagate extended automake detection fix from theora-1.0alpha7.Ralph Giles2006-06-201-2/+4
| | | | svn path=/trunk/ogg/; revision=11598
* Oops, revert accidental changes from the last commit.Ralph Giles2006-04-261-1/+1
| | | | svn path=/trunk/ogg/; revision=11292
* Propagate fixes for when AUTOMAKE_OPTIONS doesn't list a minimum version number.Ralph Giles2006-04-261-4/+8
| | | | | | This is not currently relevent, but it's best to use our latest version. svn path=/trunk/ogg/; revision=11286
* Autoheader must run before automake, to generate config.h.in, which automakeMike Smith2005-10-101-2/+2
| | | | | | | | wants. Despite this commit, I am not an autotools hacker. I hates it. svn path=/trunk/ogg/; revision=10146
* get rid of the macosx hack by disting debian from toplevel Makefile.amThomas Vander Stichele2005-09-071-5/+0
| | | | svn path=/trunk/ogg/; revision=9990
* Move our invocation of autoheader until after automake. There is aRalph Giles2005-08-021-2/+2
| | | | | | | | dependency there, at least in the Automake-generated makefile that was forcing a re-run after every autogen. We now invoke it right before autoconf. svn path=/trunk/ogg/; revision=9693
* a dist fix for macosx because of filesystem case handlingThomas Vander Stichele2005-07-061-0/+5
| | | | svn path=/trunk/ogg/; revision=9550
* enable maintainer mode for autogen builds by defaultThomas Vander Stichele2005-06-181-1/+1
| | | | svn path=/trunk/ogg/; revision=9469
* use config.h to get rid of all the added defines on compile linesThomas Vander Stichele2004-07-051-2/+2
| | | | svn path=/trunk/ogg/; revision=6993
* * error out on autotools failures so warnings are caught early onThomas Vander Stichele2004-07-051-4/+4
| | | | | | | | | | | * clean up AC_OUTPUT * AUTOMAKE_OPTIONS = foreign only needs to be done toplevel (this can be verified by checking Makefile's generated in other directories and seeing that the var isn't used) svn path=/trunk/ogg/; revision=6990
* Correct the fix for bug 483. It should be s/-1/-n 1/ not s/-1/-n -1/.Ralph Giles2004-03-141-2/+2
| | | | svn path=/trunk/ogg/; revision=5949
* Fix bug 483Monty2004-03-081-2/+2
| | | | svn path=/trunk/ogg/; revision=5906
* 'which' doesn't return a non-zero error code when the command isn't found,Ralph Giles2003-11-221-1/+1
| | | | | | | at least on darwin, so the check for *libtoolize wasn't failing properly on MacOS. Actually try running it instead. svn path=/trunk/ogg/; revision=5625
* Implement the 'or later...' part of the automake version checking. ThisRalph Giles2003-11-101-4/+7
| | | | | | | | | | is kind of hacky, just concatentating the major and minor version numbers and doing a numerical compare, but it should work for people who just have 1.7 installed when we ask for 1.6. Patch from Moritz Grimm <gtgbr@gmx.net>. svn path=/trunk/ogg/; revision=5552
* Ugly autotools foo. nodist_HEADERS requires automake 1.6 or later. addRalph Giles2003-11-101-11/+49
| | | | | | | this requirement to AUTOMAKE_OPTIONS and port the corresponding autogen support from libao. svn path=/trunk/ogg/; revision=5549
* Continuing autotools creeping feature infection. Have autogen.sh fallRalph Giles2003-10-231-5/+17
| | | | | | | | | | back to glibtoolize (as it's shipped by apple on macosx) if libtoolize is not available. This commit propagates the same change made to libvorbis. Bug 363. Also corrects missing closing quotes. svn path=/trunk/ogg/; revision=5498
* Check for libtoolize, not libtool in autogen.sh.Ralph Giles2003-07-311-1/+1
| | | | svn path=/trunk/ogg/; revision=5185
* fix autogen.sh so that builddir != srcdir workscalc2002-07-111-0/+2
| | | | svn path=/trunk/ogg/; revision=3572
* Argh. Never mind on the -I idea. automake 1.4 has a stupid feature whichStan Seibert2001-10-281-2/+2
| | | | | | | | makes using -I not a good idea. Fixed in automake 1.5, but no distro has automake 1.5 built in (except Debian unstable). See bug 70 for an explanation. svn path=/trunk/ogg/; revision=2261
* Clearing out my backlog of autoconf updates:Stan Seibert2001-10-271-2/+2
| | | | | | | | | | - CFLAGS propagates to debug and profile targets - Clean up AM_PATH_OGG macro as per bug #65 and conversations with jack - -I flag to aclocal allows .m4 files in source dir to be searched for autoconf macros. Not currently needed by libogg, but I've included it to be consistent with the other libraries (which will need it). svn path=/trunk/ogg/; revision=2259
* - Minor changes to all 4 autogen.sh files (ao, off, vorbis, vorbis-tools) tojsquyres2001-08-231-2/+2
| | | | | | | | | | | allow users to build with !(gcc && gmake) from CVS by adding the use of the $AUTOMAKE_FLAGS environment variable. (gcc && gmake) users will notice no difference. - Added HACKING file to all four projects that gives a brief description on how to build the source from CVS. Mainly: "cvs update. ./autogen.sh. ./configure. make. Oongowa." svn path=/trunk/ogg/; revision=1914
* forgot to propagate autogen.sh updatesRalph Giles2000-11-041-9/+23
| | | | svn path=/trunk/ogg/; revision=975
* Initial revisionJack Moffitt2000-09-031-0/+47
svn path=/trunk/ogg/; revision=618