autogen.sh: pass --enable-static=libndp
authorDan Winship <danw@gnome.org>
Tue, 30 Jul 2013 17:16:16 +0000 (13:16 -0400)
committerDan Winship <danw@gnome.org>
Tue, 30 Jul 2013 17:16:16 +0000 (13:16 -0400)
jhbuild (in the suggested configuration) passes --disable-static, but
we need static libndp at least. So tweak autogen.sh to ensure that
happens.

autogen.sh

index 1b56207..9e3d3d3 100755 (executable)
@@ -35,5 +35,5 @@ AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
 
 cd $olddir
 if test -z "$NOCONFIGURE"; then
-       exec $srcdir/configure --enable-maintainer-mode "$@"
+       exec $srcdir/configure --enable-maintainer-mode "$@" --enable-static=libndp
 fi