X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=autogen.sh;h=6d3c1296bf783862e93b309d5a9d33ef198ab40b;hb=044b46ec984b83e91aa2d124a5fa453deb2e6337;hp=94614553483ec5a1e18e0f3bf7a906d7553cca87;hpb=3ce2d37899528fab0fcfd0951e6dfb1a26ef9c16;p=platform%2Fupstream%2Fgstreamer.git diff --git a/autogen.sh b/autogen.sh index 9461455..6d3c129 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,21 +1,17 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. -env - - DIE=0 package=gstreamer srcfile=gst/gst.c -# a quick cvs co to ease the transition -if test ! -d common; then - if test -f CVS/Tag; then - # get everything from CVS/Tag from second character on - TAG="-r `tail -c +2 CVS/Tag`" - fi - echo "+ getting common from cvs"; cvs co $TAG common +# Make sure we have common +if test ! -f common/gst-autogen.sh; +then + echo "+ Setting up common submodule" + git submodule init fi +git submodule update # source helper functions if test ! -f common/gst-autogen.sh; @@ -26,19 +22,19 @@ then fi . common/gst-autogen.sh -CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-plugin-builddir --enable-failing-tests --enable-poisoning' +CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-failing-tests --enable-poisoning --enable-gtk-doc --enable-docbook' autogen_options $@ echo -n "+ check for build tools" if test ! -z "$NOCHECK"; then echo ": skipped version checks"; else echo; fi -version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53 autoconf-2.52" \ +version_check "autoconf" "$AUTOCONF autoconf autoconf259 autoconf257 autoconf-2.54 autoconf-2.53 autoconf253 autoconf-2.52 autoconf252" \ "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1 -version_check "automake" "$AUTOMAKE automake automake-1.7 automake17 automake-1.6" \ - "ftp://ftp.gnu.org/pub/gnu/automake/" 1 6 || DIE=1 +version_check "automake" "$AUTOMAKE automake automake-1.9 automake19 automake-1.8 automake18 automake-1.7 automake17 automake-1.6 automake16" \ + "ftp://ftp.gnu.org/pub/gnu/automake/" 1 7 || DIE=1 version_check "autopoint" "autopoint" \ - "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 11 5 || DIE=1 -version_check "libtoolize" "libtoolize" \ + "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 17 || DIE=1 +version_check "libtoolize" "libtoolize libtoolize15 glibtoolize" \ "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1 version_check "pkg-config" "" \ "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1 @@ -68,9 +64,9 @@ if test -x mkinstalldirs; then rm mkinstalldirs; fi # first remove patch if necessary, then run autopoint, then reapply if test -f po/Makefile.in.in; then - patch -p0 -R < common/gettext.patch + patch -p0 -R --forward < common/gettext.patch fi -tool_run "$autopoint --force" +tool_run "$autopoint" "--force" "patch -p0 < common/gettext.patch" patch -p0 < common/gettext.patch # aclocal @@ -85,7 +81,7 @@ echo timestamp > stamp-h.in 2> /dev/null tool_run "$autoconf" debug "automake: $automake" -tool_run "$automake" "--add-missing --copy" +tool_run "$automake" "--add-missing --copy -Wno-portability" test -n "$NOCONFIGURE" && { echo "skipping configure stage for package $package, as requested."