aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2013-02-15 04:30:30 +0800
committerXan Lopez <xan@igalia.com>2013-02-15 04:30:30 +0800
commitff9c01c07f003de688245877a829b2ae98078d2d (patch)
tree8d61f3833f05018ba587a499e745cd1d9f5c754a
parenta5499cd5750f67baf109f26e7a4daf36b79c8e9d (diff)
downloadgsoc2013-epiphany-ff9c01c07f003de688245877a829b2ae98078d2d.tar
gsoc2013-epiphany-ff9c01c07f003de688245877a829b2ae98078d2d.tar.gz
gsoc2013-epiphany-ff9c01c07f003de688245877a829b2ae98078d2d.tar.bz2
gsoc2013-epiphany-ff9c01c07f003de688245877a829b2ae98078d2d.tar.lz
gsoc2013-epiphany-ff9c01c07f003de688245877a829b2ae98078d2d.tar.xz
gsoc2013-epiphany-ff9c01c07f003de688245877a829b2ae98078d2d.tar.zst
gsoc2013-epiphany-ff9c01c07f003de688245877a829b2ae98078d2d.zip
Get rid of epiphany.h
It is also not needed anymore.
-rw-r--r--configure.ac1
-rw-r--r--src/Makefile.am1
-rw-r--r--src/epiphany.h.in63
3 files changed, 0 insertions, 65 deletions
diff --git a/configure.ac b/configure.ac
index b4c41c609..305aa960a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -258,7 +258,6 @@ lib/widgets/Makefile
embed/Makefile
src/Makefile
src/bookmarks/Makefile
-src/epiphany.h
po/Makefile.in
tests/Makefile
tests/data/Makefile
diff --git a/src/Makefile.am b/src/Makefile.am
index 14935b4ad..910851b4d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -40,7 +40,6 @@ INST_H_FILES = \
ephy-session.h \
ephy-shell.h \
ephy-window.h \
- epiphany.h \
$(NULL)
libephymain_la_SOURCES = \
diff --git a/src/epiphany.h.in b/src/epiphany.h.in
deleted file mode 100644
index 9c49f35c3..000000000
--- a/src/epiphany.h.in
+++ /dev/null
@@ -1,63 +0,0 @@
-/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
-/* Copyright © 2008 Xan Lopez <xan@gnome.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * 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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- */
-
-#ifndef __EPIPHANY_H__
-#define __EPIPHANY_H__
-
-#define __EPHY_EPIPHANY_H_INSIDE__
-
-/* From GTK_CHECK_VERSION */
-#define EPHY_MAJOR_VERSION (@EPIPHANY_MAJOR_VERSION@)
-#define EPHY_MINOR_VERSION (@EPIPHANY_MINOR_VERSION@)
-#define EPHY_MICRO_VERSION (@EPIPHANY_MICRO_VERSION@)
-
-#define EPHY_CHECK_VERSION(major, minor, micro)\
- (EPHY_MAJOR_VERSION > (major) || \
- (EPHY_MAJOR_VERSION == (major) && EPHY_MINOR_VERSION > (minor)) || \
- (EPHY_MAJOR_VERSION == (major) && EPHY_MINOR_VERSION == (minor) && \
- EPHY_MICRO_VERSION >= (micro)))
-
-#include <epiphany/ephy-adblock.h>
-#include <epiphany/ephy-adblock-manager.h>
-#include <epiphany/ephy-bookmarks.h>
-#include <epiphany/ephy-bookmarks-type-builtins.h>
-#include <epiphany/ephy-dialog.h>
-#include <epiphany/ephy-download.h>
-#include <epiphany/ephy-embed-container.h>
-#include <epiphany/ephy-embed-event.h>
-#include <epiphany/ephy-embed.h>
-#include <epiphany/ephy-embed-prefs.h>
-#include <epiphany/ephy-embed-shell.h>
-#include <epiphany/ephy-embed-single.h>
-#include <epiphany/ephy-embed-type-builtins.h>
-#include <epiphany/ephy-embed-utils.h>
-#include <epiphany/ephy-lib-type-builtins.h>
-#include <epiphany/ephy-link.h>
-#include <epiphany/ephy-node-db.h>
-#include <epiphany/ephy-node.h>
-#include <epiphany/ephy-notebook.h>
-#include <epiphany/ephy-session.h>
-#include <epiphany/ephy-shell.h>
-#include <epiphany/ephy-state.h>
-#include <epiphany/ephy-type-builtins.h>
-#include <epiphany/ephy-window.h>
-
-#undef __EPHY_EPIPHANY_H_INSIDE__
-
-#endif /* !__EPIPHANY_H__ */