[poppler] autogen.sh glib/demo

Albert Astals Cid aacid at kemper.freedesktop.org
Mon Oct 22 14:34:06 PDT 2007


 autogen.sh            |    7 ++++---
 glib/demo/Makefile.am |    1 +
 2 files changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 57331767ed5306eba1f9bf60e48fc88debdc2198
Author: Albert Astals Cid <tsdgeos at bluebox.localdomain>
Date:   Mon Oct 22 23:33:59 2007 +0200

    builddir != srcdir fixes by Christian Persch <chpe gnome org>

diff --git a/autogen.sh b/autogen.sh
index 9206991..659e708 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -2,6 +2,7 @@
 
 # Package name
 PKG_NAME=${PKG_NAME:-Poppler}
+srcdir=$(dirname $0)
 
 # Default version requirements
 REQUIRED_GTK_DOC_VERSION=${REQUIRED_GTK_DOC_VERSION:-1.0}
@@ -113,11 +114,11 @@ fi
 version_check automake AUTOMAKE "$automake_progs" $REQUIRED_AUTOMAKE_VERSION \
 "http://ftp.gnu.org/pub/gnu/automake/automake-$REQUIRED_AUTOMAKE_VERSION.tar.gz" || DIE=1
 
-autoreconf -v -i
+(cd $srcdir && autoreconf -v -i )
 
 if $want_gtk_doc; then
     printbold "Running $GTKDOCIZE..."
-    $GTKDOCIZE --copy || exit 1
+    (cd $srcdir && $GTKDOCIZE --copy) || exit 1
 fi
 
-./configure $@
+$srcdir/configure $@
diff --git a/glib/demo/Makefile.am b/glib/demo/Makefile.am
index 54de50b..9342642 100644
--- a/glib/demo/Makefile.am
+++ b/glib/demo/Makefile.am
@@ -1,5 +1,6 @@
 INCLUDES = 					\
 	-I$(top_srcdir)/glib			\
+	-I$(top_builddir)/glib			\
 	$(GTK_TEST_CFLAGS)
 
 if BUILD_GTK_TEST


More information about the poppler mailing list