aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2008-02-20 20:07:10 +0800
committerChristian Persch <chpe@src.gnome.org>2008-02-20 20:07:10 +0800
commit5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3 (patch)
treecb1c1270b4c44a2d2bc1260226be1b69e768157e /configure.ac
parentd87b36fae3835c1071abace8cb490c81f16d9e7d (diff)
downloadgsoc2013-epiphany-5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3.tar
gsoc2013-epiphany-5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3.tar.gz
gsoc2013-epiphany-5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3.tar.bz2
gsoc2013-epiphany-5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3.tar.lz
gsoc2013-epiphany-5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3.tar.xz
gsoc2013-epiphany-5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3.tar.zst
gsoc2013-epiphany-5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3.zip
Remove obsolete check. Bug #333445
svn path=/trunk/; revision=7971
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac34
1 files changed, 0 insertions, 34 deletions
diff --git a/configure.ac b/configure.ac
index 499aa22a2..796f620f3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -272,40 +272,6 @@ AC_SUBST([WEASEL_UA_VERSION])
GECKO_XPCOM_PROGRAM_CHECK
-# Make sure we DON'T have the typeaheadfind extension
-
-AC_MSG_CHECKING([whether typeaheadfind is broken])
-
-GECKO_RUN_IFELSE([],
-[GECKO_XPCOM_PROGRAM(
-[[#include <nsIComponentRegistrar.h>]],
-[[
-status = 99;
-nsCOMPtr<nsIComponentRegistrar> registrar;
-rv = NS_GetComponentRegistrar (getter_AddRefs (registrar));
-if (NS_FAILED (rv)) break;
-
-status = 98;
-nsCID *classID = nsnull;
-rv = registrar->ContractIDToCID ("@mozilla.org/typeaheadfind;1", &classID);
-if (NS_FAILED (rv) || !classID) break;
-
-nsCID badClassID = { 0x46590685, 0xbc00, 0x4aac,
- { 0xab, 0xed, 0x2c, 0x10, 0xa5, 0xb9, 0x45, 0xa4 } };
-
-status = classID->Equals (badClassID) ? 97 : EXIT_SUCCESS;
-]]
-)],
-[have_broken_typeaheadfind=no],
-[have_broken_typeaheadfind=yes],
-[have_broken_typeaheadfind=maybe])
-
-AC_MSG_RESULT([$have_broken_typeaheadfind])
-
-if test "$have_broken_typeaheadfind" = "yes"; then
- AC_MSG_ERROR([You must not compile $gecko_cv_gecko with the "typeaheadfind" extension enabled!])
-fi
-
# Check for PSM header(s) to infer PSM presence
GECKO_CHECK_HEADERS([pipnss],[nsIX509Cert.h],[have_psm=yes],[have_psm=no])