summaryrefslogtreecommitdiff
path: root/autogen.sh.in
Commit message (Collapse)AuthorAgeFilesLines
* autogen.sh.in: remove --enable-docbook for gstreamerTim-Philipp Müller2016-12-161-1/+1
| | | | It's no longer needed or supported as docs are in gst-docs now.
* Revert "gst-autogen.sh: Handle multiword arguments better"Jan Schmidt2016-09-101-1/+1
| | | | | | This reverts commit b18d820635185eb549530af1ce406937141b2dd9. Causes problems for distros with /bin/sh = dash
* gst-autogen.sh: Handle multiword arguments betterJan Schmidt2016-09-101-1/+1
| | | | | | Preserve multiword arguments that are to be passed to configure, and quote them in the generated autoregen.sh
* autogen.sh: Enable --with-player-tests by default in gst-plugins-badSebastian Dröge2015-12-231-0/+2
|
* Pre-commit: Fallback to copy when symlink does not workNicolas Dufresne2015-12-071-1/+5
| | | | | | | | | | | | On certain filesystems like FAT, NTFS and some network file systems, symlinks are not supported. In those case, installing the pre-commit hook fails and leaves the developers with having to run the style checker manually. Instead, fallback to copy. This should enable the commit hook for users of filesystems and certain OSs where symlinks are not supported. https://bugzilla.gnome.org/show_bug.cgi?id=759089
* autogen.sh.in: fix copy'n'paste mistakeTim-Philipp Müller2015-04-261-1/+0
|
* autogen.sh.in: suppress grep outputTim-Philipp Müller2015-04-241-1/+1
| | | | We just want to know if we have a match or not.
* autogen.sh.in: only run autopoint if there's a po dir and configure.ac wants ↵Tim-Philipp Müller2015-04-231-0/+1
| | | | | | | | | gettext Don't run autopoint just because a po directory exist, also check for AM_GNU_GETTEXT_VERSION in configure.ac. https://bugzilla.gnome.org/show_bug.cgi?id=748058
* autogen.sh.in: simplify checks for autoconf and pkg-configTim-Philipp Müller2015-04-231-8/+19
| | | | | | | | | | 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: drop support for AUTORECONF env varTim-Philipp Müller2015-04-031-1/+1
| | | | | | | | | | | | autoreconf is hard-coded now after recent changes, so there's no point in checking for AUTORECONF if we're not going to use it anyway. It's not a standard environment variable anyway, nor should it be required for anything (autoreconf itself supports the environment variables AUTOM4TE, AUTOCONF, AUTOHEADER, AUTOMAKE, ACLOCAL, AUTOPOINT, LIBTOOLIZE, M4, and MAKE). https://bugzilla.gnome.org/show_bug.cgi?id=709480
* gst-autogen.sh: use autoreconfJavier Jardón2015-04-031-23/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=709480
* autogen.sh.in: drop custom patching of generated po/Makefile.in.inTim-Philipp Müller2013-12-221-7/+1
| | | | | | | Not needed any longer, we now just put the gettext domain into po/Makevars. https://bugzilla.gnome.org/show_bug.cgi?id=705455
* autogen.sh.in: fix for modules that have no po/ directoryTim-Philipp Müller2013-06-181-5/+7
|
* autogen.sh.in: fix autoconf version checkRobert Jobbagy2013-04-141-2/+2
| | | | | | | We require 2.68 in all main modules now, don't be content with 2.62 here just to have autoconf error out later. https://bugzilla.gnome.org/show_bug.cgi?id=697874
* autogen.sh.in: remove workaround for prehistoric autopoint versionsTim-Philipp Müller2013-04-141-2/+0
|
* autogen.sh.in: merge some changes from gst-plugins-baseTim-Philipp Müller2013-04-141-5/+5
| | | | | | | But drop the feature to automatically add --disable-xyz and --enable-xyz arguments when calling configure based on local files called enable/disable. We can always add it back if it turns out someone is actually using that.
* autogen.sh.in: split out core-specific default configure optionsTim-Philipp Müller2013-04-141-1/+5
|
* autogen.sh.in: only touch .pot file if there's a po directoryTim-Philipp Müller2013-04-141-1/+3
|
* update-autogen: new tool to generate module autogen.sh files from a common ↵Tim-Philipp Müller2013-04-141-0/+118
template Maybe one day an autogen.sh consisting of just 'autoreconf' will be enough. Until then, let's try to at least use consistent autogen.sh in the different modules. This tool will hopefully help with that. The autogen.sh.in template is currently based on the autogen.sh from core. There are changes in other modules which should probably be merged into that. One bug has already been fixed: touch gstreamer-1.0.pot not -0.10.pot