]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blobdiff - autogen.sh
Make XServerXVNC extend XServerLocal
[sojka/lightdm.git] / autogen.sh
index 207b1dd16735c960a5551cd411bed7959719ac3a..ab1e8aa9fa035d7eb5dc3ed7e46c7a1fcec36afa 100755 (executable)
@@ -1,21 +1,21 @@
 #!/bin/sh
 # Run this to generate all the initial makefiles, etc.
 
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
+libtoolize --force --copy
+intltoolize --force --copy
+gtkdocize --copy
+aclocal
+autoconf
+autoheader
+automake --add-missing --copy --foreign
 
-PKG_NAME="lightdm"
-REQUIRED_AUTOMAKE_VERSION=1.7
+YELP=`which yelp-build`
+if test -z $YELP; then
+  echo "*** The tools to build the documentation are not found,"
+  echo "    please install the yelp-tools package ***"
+  exit 1
+fi
 
-(test -f $srcdir/configure.ac \
-  && test -d $srcdir/src) || {
-    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
-    echo " top-level lightdm directory"
-    exit 1
-}
-
-which gnome-autogen.sh || {
-    echo "You need to install gnome-common from the GNOME CVS"
-    exit 1
-}
-USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh
+if [ -z "$NOCONFIGURE" ]; then
+    ./configure $@
+fi