diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-01-01 02:39:47 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-01-01 02:48:37 +0800 |
commit | 055dd6929f8be97efdd141a3d47209343a826b50 (patch) | |
tree | dbe5d0d754b73308cc4d248859c987e4b3d59ebb | |
parent | f314742b795ea7749e4ec4747c55ff6e7e701fa6 (diff) | |
download | gsoc2013-evolution-055dd6929f8be97efdd141a3d47209343a826b50.tar gsoc2013-evolution-055dd6929f8be97efdd141a3d47209343a826b50.tar.gz gsoc2013-evolution-055dd6929f8be97efdd141a3d47209343a826b50.tar.bz2 gsoc2013-evolution-055dd6929f8be97efdd141a3d47209343a826b50.tar.lz gsoc2013-evolution-055dd6929f8be97efdd141a3d47209343a826b50.tar.xz gsoc2013-evolution-055dd6929f8be97efdd141a3d47209343a826b50.tar.zst gsoc2013-evolution-055dd6929f8be97efdd141a3d47209343a826b50.zip |
Remove --with-kde-applnk-path configure option.
I had to research what "applnk" even was. It seems to have been KDE's
own precursor to the FreeDesktop.org Desktop Menu Specification and was
abandoned in KDE 3.2 (circa 2004!).
The option is way obsolete. Get rid of it.
-rw-r--r-- | configure.ac | 19 | ||||
-rw-r--r-- | data/Makefile.am | 7 |
2 files changed, 0 insertions, 26 deletions
diff --git a/configure.ac b/configure.ac index ce24d7d1fc..bf261b0f36 100644 --- a/configure.ac +++ b/configure.ac @@ -1520,25 +1520,6 @@ AC_ARG_WITH([sub-version], AC_DEFINE_UNQUOTED(SUB_VERSION, "$with_sub_version", [Version substring, for packagers]) -dnl ******************** -dnl KDE applnk directory -dnl ******************** -AC_ARG_WITH([kde-applnk-path], - AS_HELP_STRING([--with-kde-applnk-path=PATH], - [Location of KDE applnk files]), - [with_kde_applnk_path=$withval], [with_kde_applnk_path="no"]) - -if test x"$with_kde_applnk_path" != x"no"; then - if test -z "$with_kde_applnk_path"; then - with_kde_applnk_path="$datadir/applnk" - fi - KDE_APPLNK_DIR="$with_kde_applnk_path" -else - KDE_APPLNK_DIR="" -fi -AM_CONDITIONAL(HAVE_KDE_APPLNK, test x"$KDE_APPLNK_DIR" != x) -AC_SUBST(KDE_APPLNK_DIR) - dnl ******************************************** dnl Glade 3 catalog files (for maintainers only) dnl ******************************************** diff --git a/data/Makefile.am b/data/Makefile.am index a107daa950..de1a3d0e39 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -42,13 +42,6 @@ dist_theme_DATA = \ webview.css \ webview-print.css -if HAVE_KDE_APPLNK - -kdedesktopdir = $(KDE_APPLNK_DIR)/Applications -kdedesktop_DATA = $(desktop_in_in_file:.desktop.in.in=.desktop) - -endif - dist_noinst_MANS = evolution.1 |