diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-11-26 21:27:04 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-11-26 21:27:04 +0800 |
commit | 1328c60991881e682357bbbc81f8802f1c66a15d (patch) | |
tree | 18500f8d17ca46fa8be581b71bb039aad5d01d47 | |
parent | 67240885fab2b8de03f95bb436284e833eff8e7b (diff) | |
download | gsoc2013-epiphany-1328c60991881e682357bbbc81f8802f1c66a15d.tar gsoc2013-epiphany-1328c60991881e682357bbbc81f8802f1c66a15d.tar.gz gsoc2013-epiphany-1328c60991881e682357bbbc81f8802f1c66a15d.tar.bz2 gsoc2013-epiphany-1328c60991881e682357bbbc81f8802f1c66a15d.tar.lz gsoc2013-epiphany-1328c60991881e682357bbbc81f8802f1c66a15d.tar.xz gsoc2013-epiphany-1328c60991881e682357bbbc81f8802f1c66a15d.tar.zst gsoc2013-epiphany-1328c60991881e682357bbbc81f8802f1c66a15d.zip |
Re-dist with libtool 2.RELEASE_2_24_2_1
svn path=/branches/gnome-2-24/; revision=8614
-rw-r--r-- | configure.ac | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/configure.ac b/configure.ac index 135d602d1..7e89f2456 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ m4_define([epiphany_version_major],[2]) m4_define([epiphany_version_minor],[24]) m4_define([epiphany_version_micro],[2]) -m4_define([epiphany_version_extra],[]) +m4_define([epiphany_version_extra],[.1]) m4_define([epiphany_version],[epiphany_version_major.epiphany_version_minor.epiphany_version_micro()epiphany_version_extra]) m4_define([epiphany_build_id],[20080528]) # The date of the 2.22.2 release @@ -505,31 +505,6 @@ if test "$have_python" != "no"; then AC_SUBST([PYTHON_LIB_LOC]) AC_SUBST([PYTHON_CFLAGS]) AC_SUBST([PYTHON_EXTRA_LIBS]) - - # FIXME: do we really need this test? - AC_MSG_CHECKING([whether we can build a shared library depending on libpython]) - rm -rf testpython - mkdir testpython - cd testpython - cat > testpython.c <<EOF -#include <Python.h> -int testpython (void) -{ -Py_Exit (0); -} -EOF - - if /bin/sh ../libtool --mode=compile ${CC} $PYTHON_CFLAGS -c testpython.c >/dev/null 2>&1 && \ - /bin/sh ../libtool --mode=link ${CC} -o testpython.la -rpath `pwd` -module -avoid-version $PYTHON_LIB_LOC testpython.lo $PYTHON_LIBS $PYTHON_EXTRA_LIBS >/dev/null 2>&1 && \ - grep 'dlname.*testpython' testpython.la >/dev/null 2>&1; then - result=yes - else - result=no - have_python=no - fi - cd .. - rm -rf testpython - AC_MSG_RESULT([$result]) fi if test "$have_python" != "no"; then |