summaryrefslogtreecommitdiff
path: root/gst-autogen.sh
Commit message (Collapse)AuthorAgeFilesLines
* Revert "gst-autogen.sh: Handle multiword arguments better"Jan Schmidt2016-09-101-7/+3
| | | | | | This reverts commit b18d820635185eb549530af1ce406937141b2dd9. Causes problems for distros with /bin/sh = dash
* gst-autogen.sh: Handle multiword arguments betterJan Schmidt2016-09-101-3/+7
| | | | | | Preserve multiword arguments that are to be passed to configure, and quote them in the generated autoregen.sh
* autogen.sh.in: simplify checks for autoconf and pkg-configTim-Philipp Müller2015-04-231-162/+0
| | | | | | | | | | No need to check the versions there. pkg-config 0.8 was released in 2003. autoconf version checks will be made by autoreconf based on our requirement in configure.ac, and it will error out for us in that case. So just check for presence of these tools and get rid of a whole lot of code.
* gst-autogen.sh: remove some unused helper funcsTim-Philipp Müller2015-04-031-48/+0
|
* gst-autogen.sh: Make ${VARPREFIX}_VERSION a local variableAntoine Jacoutot2014-05-031-0/+1
| | | | | | | Otherwise we may end up overriding what was manually set in the environment. https://bugzilla.gnome.org/show_bug.cgi?id=728515
* gst-autogen.sh: Remove checks for obsolete autotools versionsSebastian Dröge2012-04-131-32/+0
|
* gst-autogen.sh: Substitute punctuation in variable names. Use printfJan Schmidt2009-06-261-3/+3
| | | | | | | Replace the punctuation (-,.) in variable names with underscores, so that checks for binaries with names like 'automake-1.10' can succeed. Use printf instead of 'echo -n' as it's apparently more portable.
* gst-autogen.sh: Don't use bash extensionJan Schmidt2009-06-241-7/+7
| | | | | | There's no need to use bash sub-shells just to get computed variable names. Use eval directly instead, so that it works on systems where /bin/sh isn't bash.
* add debug to version_compare(); use it in libtool_2_check()Thomas Vander Stichele2009-06-091-3/+9
|
* split out version functions; add libtool_2_2 checkThomas Vander Stichele2009-06-031-42/+97
|
* Trivial whitespace cleanupsFelipe Contreras2009-04-261-4/+1
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* Whitespace cleanupsFelipe Contreras2009-04-041-4/+4
| | | | Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
* gst-autogen.sh: add install_git_hooks() subroutineTim-Philipp Müller2009-02-031-0/+24
|
* gst-autogen.sh: Instead of only passing certain arguments to configure, pass ↵Andy Wingo2008-02-251-19/+5
| | | | | | | | | | | anything that we didn't handle. Much fri... Original commit message from CVS: 2008-02-25 Andy Wingo <wingo@pobox.com> * gst-autogen.sh: Instead of only passing certain arguments to configure, pass anything that we didn't handle. Much friendlier. Fixes #34412.
* gst-autogen.sh: update version detection expression to catch stuff likeThomas Vander Stichele2005-10-121-1/+1
| | | | | | | | Original commit message from CVS: * gst-autogen.sh: update version detection expression to catch stuff like Libtool (libtool15) 1.5.0
* gst-autogen.sh: Remove the old autoregen.sh if it exists before recreating ↵Jan Schmidt2005-06-301-0/+6
| | | | | | | | | | | | it, to prevent confusing any shell process... Original commit message from CVS: 2005-06-30 Jan Schmidt <thaytan@mad.scientist.com> * gst-autogen.sh: Remove the old autoregen.sh if it exists before recreating it, to prevent confusing any shell process that might be reading it currently.
* Backport from 0.8 branch and added new .defs file from GStreamer 0.9Edward Hervey2005-06-171-5/+5
| | | | | Original commit message from CVS: Backport from 0.8 branch and added new .defs file from GStreamer 0.9
* create autoregen.sh *before* shifting the optionsStefan Kost2005-06-031-6/+5
| | | | | Original commit message from CVS: create autoregen.sh *before* shifting the options
* gst-autogen.sh: only update autoregen.sh on actual runsThomas Vander Stichele2005-05-171-5/+6
| | | | | Original commit message from CVS: * gst-autogen.sh: only update autoregen.sh on actual runs
* allow tool_run to run a failure commandThomas Vander Stichele2004-12-081-0/+2
| | | | | Original commit message from CVS: allow tool_run to run a failure command
* fix X check explain version checkThomas Vander Stichele2004-03-161-3/+1
| | | | | | Original commit message from CVS: fix X check explain version check
* gst-autogen.sh: Use A-Z instead of A-z in sed expression to avoid a warningJohan Dahlin2004-02-111-1/+1
| | | | | | | | Original commit message from CVS: 2004-02-11 Johan Dahlin <johan@gnome.org> * gst-autogen.sh: Use A-Z instead of A-z in sed expression to avoid a warning
* version check that doesnt choke on new libtoolAndy Wingo2003-08-071-1/+1
| | | | | Original commit message from CVS: version check that doesnt choke on new libtool
* Allow disable/enable/with options to be passed to configure from the ↵Brian Cameron2003-06-251-0/+5
| | | | | | | | | autogen.sh script. So you don't have to re-run ... Original commit message from CVS: Allow disable/enable/with options to be passed to configure from the autogen.sh script. So you don't have to re-run configure to specify that you do not want a particular plugin to be built, etc.
* Change autoconf_2.52d_check to 2_52 to make bash happyRELEASE_0_5_1David Schleef2003-04-131-1/+1
| | | | | Original commit message from CVS: Change autoconf_2.52d_check to 2_52 to make bash happy
* Using bash is problematic on non-linux plattforms, Matthias use NetBSD.Matthias Friedrich2003-04-131-1/+1
| | | | | | | | | | | | | | Original commit message from CVS: moving GStreamer from Bash to sh. Patch from Matthias Friedrich <matt@mafr.de> Using bash is problematic on non-linux plattforms, Matthias use NetBSD. Matthias message: I appended the promised fix to autogen.sh and friends. That way, only plain /bin/sh is needed as it is present on all Unices. The problems were non-portable pushd/popd functions and the usage of a '==' comparison which is non-standard in test(1). The standard is '=', although C programmers never believe it.
* fix case for prefix blah (without =)Thomas Vander Stichele2003-01-181-1/+9
| | | | | Original commit message from CVS: fix case for prefix blah (without =)
* don't exit on unknown argsThomas Vander Stichele2003-01-181-1/+1
| | | | | Original commit message from CVS: don't exit on unknown args
* closes #98062Thomas Vander Stichele2003-01-141-22/+15
| | | | | Original commit message from CVS: closes #98062
* non-gnu fixThomas Vander Stichele2002-12-111-1/+1
| | | | | Original commit message from CVS: non-gnu fix
* reset version check failure var each time it's used add some extra debug ↵David I. Lehn2002-10-171-3/+8
| | | | | | | | msgs for verion check Original commit message from CVS: reset version check failure var each time it's used add some extra debug msgs for verion check
* look for preferable autotool versions if the default one is not acceptableRELEASE-0_2_0Thomas Vander Stichele2002-09-301-66/+67
| | | | | Original commit message from CVS: look for preferable autotool versions if the default one is not acceptable
* sf's backThomas Vander Stichele2002-08-271-0/+1
| | | | | Original commit message from CVS: sf's back
* fix for when version check doesn't work wellBRANCH-RELEASE-0_4_0-ROOTThomas Vander Stichele2002-06-271-0/+1
| | | | | Original commit message from CVS: fix for when version check doesn't work well
* various AC_HELP_STRING changesThomas Vander Stichele2002-05-271-1/+1
| | | | | Original commit message from CVS: various AC_HELP_STRING changes
* helps when not specifying toolsThomas Vander Stichele2002-05-271-2/+2
| | | | | Original commit message from CVS: helps when not specifying tools
* hey, who said only wtay gets to break stuff ?Thomas Vander Stichele2002-05-271-0/+31
| | | | | Original commit message from CVS: hey, who said only wtay gets to break stuff ?
* if gnu getopt is not available, don't bother processing any optionsAndy Wingo2002-05-061-0/+5
| | | | | Original commit message from CVS: if gnu getopt is not available, don't bother processing any options
* doc changesThomas Vander Stichele2002-04-291-1/+1
| | | | | Original commit message from CVS: doc changes
* a slight hack to create autoregen.shThomas Vander Stichele2002-04-281-0/+5
| | | | | Original commit message from CVS: a slight hack to create autoregen.sh
* and some messy stuff to adapt to aclocal which is easy to breakThomas Vander Stichele2002-04-181-0/+18
| | | | | Original commit message from CVS: and some messy stuff to adapt to aclocal which is easy to break
* fixes to supply of options and actual version extractionThomas Vander Stichele2002-04-181-2/+3
| | | | | Original commit message from CVS: fixes to supply of options and actual version extraction
* adding / to ignoreThomas Vander Stichele2002-04-181-1/+1
| | | | | Original commit message from CVS: adding / to ignore
* make autoconf check listen to --nocheckThomas Vander Stichele2002-04-161-7/+10
| | | | | Original commit message from CVS: make autoconf check listen to --nocheck
* added prefix as a fallthrough for autogen.sh to configure by request of ↵Thomas Vander Stichele2002-04-101-3/+9
| | | | | | | | | | | | | jdahlin fixes http://bugzilla.gnome.org/show_... Original commit message from CVS: added prefix as a fallthrough for autogen.sh to configure by request of jdahlin fixes http://bugzilla.gnome.org/show_bug.cgi?id=78267 (ain't that cool ?) if anyone knows how to coax getopt into passing unrecognized opts on, please share
* this was the wrong way aroundcry_baby_0_2_0_0RELEASE-0_3_3-GUADECBYFOOTBRANCH-RELEASE-0_3_3-ROOTBRANCH-EVENTS2-ROOTBRANCH-RELEASE-0_3_3BRANCH-EVENTS2Thomas Vander Stichele2002-03-051-1/+1
| | | | | Original commit message from CVS: this was the wrong way around
* Good luck with this one ;) converted to using getopt dropped autogen- prefix ↵Thomas Vander Stichele2002-03-021-26/+83
| | | | | | | | | | | | | from autogen options since options for c... Original commit message from CVS: Good luck with this one ;) converted to using getopt dropped autogen- prefix from autogen options since options for configure can now be given after putting -- on the cmd line added with-autoconf and with-automake to help michael out this all needs some testing plus a few changes in other modules as well
* adding informative message when we die because of tools problems changed the ↵Thomas Vander Stichele2002-02-121-3/+18
| | | | | | | | | | tr to a small sed thing in the version c... Original commit message from CVS: * adding informative message when we die because of tools problems * changed the tr to a small sed thing in the version check (why ? because minor 4-p5 translated to 45 using the tr thing, which is not what we want. Hopefully this doesn't break other possibilities)
* fix numeric comparisons (sort of, it now views 1.4.2 the same as 1.4.2a) ↵Andy Wingo2002-02-091-3/+5
| | | | | | | | require a fresh gstreamer (ie, glib2-only) f... Original commit message from CVS: * fix numeric comparisons (sort of, it now views 1.4.2 the same as 1.4.2a) * require a fresh gstreamer (ie, glib2-only) for the player
* slurp autogen-specific options to AUTOGEN_EXT_OPT for use in autogenning ↵Thomas Vander Stichele2002-02-061-0/+3
| | | | | | | | sub-packages (wingo) Original commit message from CVS: slurp autogen-specific options to AUTOGEN_EXT_OPT for use in autogenning sub-packages (wingo)