X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=blobdiff_plain;f=buildconf.sh;h=386ddbcb7d56ae17a332e388a0513ad71909d669;hp=f2ea8da678cda2b9e6f20309a808c5b35392291f;hb=4b3585940162cf9ca65ca4a6914c0addcde50eef;hpb=0e003c1f98eb27d793ddaa2579f286c2cea6d066 diff --git a/buildconf.sh b/buildconf.sh index f2ea8da..386ddbc 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,5 +1,12 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.16 2006-05-26 19:46:37 adam Exp $ + +test -d config || mkdir config +if test -d m4/.git -a -d doc/common/.git; then + : +else + git submodule init + git submodule update +fi if automake --version|head -1 |grep '1\.[4-7]'; then echo "automake 1.4-1.7 is active. You should use automake 1.8 or later" @@ -42,7 +49,7 @@ esac if $enable_configure; then if test -n "$sh_flags"; then - CFLAGS="$sh_flags" CXXFLAGS="$sh_flags" ./configure $* + CFLAGS="$sh_flags" CXXFLAGS="$sh_flags" ./configure --disable-shared --enable-static $* else ./configure $* fi