libreofficekit/Executable_lokconf_init.mk | 42 ------------------------ libreofficekit/Module_libreofficekit.mk | 4 -- libreofficekit/qa/lokconf_init/lokconf_init.cxx | 42 ------------------------ 3 files changed, 88 deletions(-)
New commits: commit e5cd9ee78b36a0f23e2b85b01ceb8899fe11c0fc Author: Tomaž Vajngerl <tomaz.vajng...@collabora.com> Date: Thu Dec 4 13:11:41 2014 +0100 Revert "Implement lokconf_init." This reverts commit 5acadbfb0c79fe51f8025b065b46b0ccd25c804d. Conflicts: libreofficekit/qa/lokconf_init/lokconf_init.cxx Change-Id: I88221f660bcf15cbc29e90bfc3016b367570f9af diff --git a/libreofficekit/Executable_lokconf_init.mk b/libreofficekit/Executable_lokconf_init.mk deleted file mode 100644 index 3e25f13..0000000 --- a/libreofficekit/Executable_lokconf_init.mk +++ /dev/null @@ -1,42 +0,0 @@ -# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- -# -# This file is part of the LibreOffice project. -# -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# - -$(eval $(call gb_Executable_Executable,lokconf_init)) - -$(eval $(call gb_Executable_set_include,lokconf_init,\ - $$(INCLUDE) \ -)) - -$(eval $(call gb_Executable_use_libraries,lokconf_init, \ - cppu \ - sal \ -)) - -$(eval $(call gb_Executable_use_static_libraries,lokconf_init,\ - libreofficekit \ -)) - -$(eval $(call gb_Executable_add_libs,lokconf_init,\ - -lSM \ - -lICE \ -)) - -ifeq ($(OS),LINUX) -$(eval $(call gb_Executable_add_libs,lokconf_init,\ - -lm \ - -ldl \ - -lpthread \ -)) -endif - -$(eval $(call gb_Executable_add_exception_objects,lokconf_init,\ - libreofficekit/qa/lokconf_init/lokconf_init \ -)) - -# vim: set noet sw=4 ts=4: diff --git a/libreofficekit/Module_libreofficekit.mk b/libreofficekit/Module_libreofficekit.mk index 2ad2d16..fe5ee15 100644 --- a/libreofficekit/Module_libreofficekit.mk +++ b/libreofficekit/Module_libreofficekit.mk @@ -11,10 +11,6 @@ $(eval $(call gb_Module_Module,libreofficekit)) ifeq ($(OS),LINUX) -$(eval $(call gb_Module_add_targets,libreofficekit,\ - Executable_lokconf_init \ -)) - # $(eval $(call gb_Module_add_check_targets,libreofficekit,\ # CppunitTest_libreofficekit_tiledrendering \ # )) diff --git a/libreofficekit/qa/lokconf_init/lokconf_init.cxx b/libreofficekit/qa/lokconf_init/lokconf_init.cxx deleted file mode 100644 index aa12bc9..0000000 --- a/libreofficekit/qa/lokconf_init/lokconf_init.cxx +++ /dev/null @@ -1,42 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -#include <stdio.h> -#include <string> -#include <string.h> - -#include <sal/main.h> - -#include <LibreOfficeKit/LibreOfficeKit.h> -#include <LibreOfficeKit/LibreOfficeKitInit.h> - -using namespace std; - -// Using SAL_IMPLEMENT_MAIN means that we can directly use the same -// arguments as would be provided to cppunittester, i.e. ensuring -// that we're operating with the correct directories etc. -SAL_IMPLEMENT_MAIN() -{ - string sPath( getenv("INSTDIR") ); - sPath += "/program"; - - LibreOfficeKit* pOffice = lok_init( sPath.c_str() ); - - // As this is the first init, pOffice should be NULL. - // However there's no reason we shouldn't be able to operate - // even if it isn't the first init. - if ( pOffice ) - { - pOffice->pClass->destroy( pOffice ); - pOffice = 0; - } - return 0; -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits