diff options
author | Xan Lopez <xan@gnome.org> | 2009-06-06 05:26:49 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-06-06 05:29:25 +0800 |
commit | 9ac17ac272eb0e08c54a44a7269add7de57a44ea (patch) | |
tree | 2d9428dd90a2571198e5633cf4aa10f6bf2fb2a9 /data | |
parent | 8cc5c0f0ceca462741ece79b0ed6e43da878656f (diff) | |
download | gsoc2013-epiphany-9ac17ac272eb0e08c54a44a7269add7de57a44ea.tar gsoc2013-epiphany-9ac17ac272eb0e08c54a44a7269add7de57a44ea.tar.gz gsoc2013-epiphany-9ac17ac272eb0e08c54a44a7269add7de57a44ea.tar.bz2 gsoc2013-epiphany-9ac17ac272eb0e08c54a44a7269add7de57a44ea.tar.lz gsoc2013-epiphany-9ac17ac272eb0e08c54a44a7269add7de57a44ea.tar.xz gsoc2013-epiphany-9ac17ac272eb0e08c54a44a7269add7de57a44ea.tar.zst gsoc2013-epiphany-9ac17ac272eb0e08c54a44a7269add7de57a44ea.zip |
Remove Python support.
The supported language for extensions other than C/C++ is now
JavaScript through Seed.
Diffstat (limited to 'data')
-rw-r--r-- | data/epiphany.m4 | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/data/epiphany.m4 b/data/epiphany.m4 index dd3872235..d912a0e62 100644 --- a/data/epiphany.m4 +++ b/data/epiphany.m4 @@ -27,7 +27,6 @@ # Side effects: # EPIPHANY_EXTENSIONS_DIR is set to the directory to install extensions in # EPIPHANY_EXTENSION_RULE can be used to translate .ephy-extension files -# EPIPHANY_HAS_PYTHON is set if the epiphany is compiled with python support AC_DEFUN([EPIPHANY_EXTENSION_INIT], [ dnl Check we have an api-version @@ -67,18 +66,6 @@ dnl set the EPIPHANY_EXTENSIONS_DIR variable EPIPHANY_EXTENSIONS_DIR="`$PKG_CONFIG --variable=extensionsdir epiphany-$_epiphany_api_version`" AC_SUBST([EPIPHANY_EXTENSIONS_DIR]) -dnl Look to see if epiphany has python support -AC_MSG_CHECKING([whether epiphany has python support]) -_epiphany_features="`$PKG_CONFIG --variable=features epiphany-$_epiphany_api_version`" -if echo "$_epiphany_features" | egrep '(^| )(python)($| )' > /dev/null; then - result=yes - EPIPHANY_HAS_PYTHON=1 - AC_SUBST([EPIPHANY_HAS_PYTHON]) -else - result=no -fi -AC_MSG_RESULT([$result]) - dnl Add a rule that auto-translates the .ephy-extension files dnl (like the INTLTOOL_XML_RULE does for xml files) EPIPHANY_EXTENSION_RULE='%.ephy-extension: %.ephy-extension.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' |