From 8788bffdb5182bc7da70214273796d54cb7309bc Mon Sep 17 00:00:00 2001 From: Patrik Flykt Date: Wed, 11 Apr 2012 16:29:00 +0300 Subject: [PATCH] google: Remove google nameserver plugin --- Makefile.am | 1 - Makefile.plugins | 12 ------------ bootstrap-configure | 1 - configure.ac | 6 ------ plugins/google.c | 48 ------------------------------------------------ 5 files changed, 68 deletions(-) delete mode 100644 plugins/google.c diff --git a/Makefile.am b/Makefile.am index b9cce98..a2d5ce0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -243,7 +243,6 @@ DISTCHECK_CONFIGURE_FLAGS = --disable-gtk-doc \ --enable-bluetooth \ --enable-ofono \ --enable-pacrunner \ - --enable-google \ --enable-client \ --enable-hh2serial-gps \ --enable-openconnect \ diff --git a/Makefile.plugins b/Makefile.plugins index 0859df3..841a262 100644 --- a/Makefile.plugins +++ b/Makefile.plugins @@ -202,18 +202,6 @@ plugins_pacrunner_la_LDFLAGS = $(plugin_ldflags) endif endif -if GOOGLE -if GOOGLE_BUILTIN -builtin_modules += google -builtin_sources += plugins/google.c -else -plugin_LTLIBRARIES += plugins/google.la -plugin_objects += $(plugins_google_la_OBJECTS) -plugins_google_la_CFLAGS = $(plugin_cflags) -plugins_google_la_LDFLAGS = $(plugin_ldflags) -endif -endif - if POLKIT if POLKIT_BUILTIN builtin_modules += polkit diff --git a/bootstrap-configure b/bootstrap-configure index 4b5bbeb..ef5214a 100755 --- a/bootstrap-configure +++ b/bootstrap-configure @@ -24,7 +24,6 @@ fi --enable-openconnect=builtin \ --enable-openvpn=builtin \ --enable-pacrunner=builtin \ - --enable-google=builtin \ --enable-nmcompat=builtin \ --enable-polkit=builtin \ --enable-capng \ diff --git a/configure.ac b/configure.ac index 15a99c5..006533e 100644 --- a/configure.ac +++ b/configure.ac @@ -219,12 +219,6 @@ AC_ARG_ENABLE(pacrunner, AM_CONDITIONAL(PACRUNNER, test "${enable_pacrunner}" != "no") AM_CONDITIONAL(PACRUNNER_BUILTIN, test "${enable_pacrunner}" = "builtin") -AC_ARG_ENABLE(google, - AC_HELP_STRING([--enable-google], [enable Google Public DNS support]), - [enable_google=${enableval}], [enable_google="no"]) -AM_CONDITIONAL(GOOGLE, test "${enable_google}" != "no") -AM_CONDITIONAL(GOOGLE_BUILTIN, test "${enable_google}" = "builtin") - AC_CHECK_HEADERS(resolv.h, dummy=yes, AC_MSG_ERROR(resolver header files are required)) AC_CHECK_LIB(resolv, ns_initparse, dummy=yes, [ diff --git a/plugins/google.c b/plugins/google.c deleted file mode 100644 index 0afc31c..0000000 --- a/plugins/google.c +++ /dev/null @@ -1,48 +0,0 @@ -/* - * - * Connection Manager - * - * Copyright (C) 2007-2010 Intel Corporation. All rights reserved. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#define CONNMAN_API_SUBJECT_TO_CHANGE -#include -#include - -#define GOOGLE_DNS1 "8.8.8.8" -#define GOOGLE_DNS2 "8.8.4.4" - -static int google_init(void) -{ - connman_resolver_append_public_server(GOOGLE_DNS1); - connman_resolver_append_public_server(GOOGLE_DNS2); - - return 0; -} - -static void google_exit(void) -{ - connman_resolver_remove_public_server(GOOGLE_DNS2); - connman_resolver_remove_public_server(GOOGLE_DNS1); -} - -CONNMAN_PLUGIN_DEFINE(google, "Google Public DNS plugin", VERSION, - CONNMAN_PLUGIN_PRIORITY_LOW, google_init, google_exit) -- 2.7.4