[Libreoffice-commits] .: tools/bootstrp tools/Executable_sspretty.mk tools/Module_tools.mk

Bjoern Michaelsen bmichaelsen at kemper.freedesktop.org
Sat Apr 16 06:19:25 PDT 2011


 tools/Executable_sspretty.mk |   57 ---------------------------------------
 tools/Module_tools.mk        |    1 
 tools/bootstrp/sspretty.cxx  |   62 -------------------------------------------
 3 files changed, 120 deletions(-)

New commits:
commit 9054e7a0305325fdf1d00e84901d835b8516eed0
Author: Bjoern Michaelsen <bjoern.michaelsen at canonical.com>
Date:   Sat Apr 16 15:19:18 2011 +0200

    remove obsolete sspretty

diff --git a/tools/Executable_sspretty.mk b/tools/Executable_sspretty.mk
deleted file mode 100644
index 5cfd087..0000000
--- a/tools/Executable_sspretty.mk
+++ /dev/null
@@ -1,57 +0,0 @@
-#*************************************************************************
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-# 
-# Copyright 2000, 2010 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org 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 Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org.	If not, see
-# <http://www.openoffice.org/license.html>
-# for a copy of the LGPLv3 License.
-#
-#*************************************************************************
-
-$(eval $(call gb_Executable_Executable,sspretty))
-
-$(eval $(call gb_Executable_set_include,sspretty,\
-    $$(INCLUDE) \
-    -I$(realpath $(SRCDIR)/tools/inc) \
-    -I$(realpath $(SRCDIR)/tools/inc/pch) \
-    -I$(realpath $(SRCDIR)/tools/bootstrp) \
-))
-
-$(eval $(call gb_Executable_set_cxxflags,sspretty,\
-    $$(CXXFLAGS) \
-    -D_TOOLS_STRINGLIST \
-))
-
-$(eval $(call gb_Executable_add_linked_libs,sspretty,\
-    sal \
-    tl \
-    $(gb_STDLIBS) \
-))
-# used to link against basegfxlx comphelp4gcc3 i18nisolang1gcc3 ucbhelper4gcc3 uno_cppu uno_cppuhelpergcc3 uno_salhelpergcc3 - seems to be superficial
-
-$(eval $(call gb_Executable_add_exception_objects,sspretty,\
-    tools/bootstrp/appdef \
-    tools/bootstrp/cppdep \
-    tools/bootstrp/inimgr \
-    tools/bootstrp/prj \
-    tools/bootstrp/sspretty \
-))
-
-# vim: set noet sw=4 ts=4:
diff --git a/tools/Module_tools.mk b/tools/Module_tools.mk
index 6e950b0..a9e8179 100644
--- a/tools/Module_tools.mk
+++ b/tools/Module_tools.mk
@@ -33,7 +33,6 @@ $(eval $(call gb_Module_add_targets,tools,\
     Executable_mkunroll \
     Executable_rscdep \
     Executable_so_checksum \
-    Executable_sspretty \
     Library_tl \
     Package_inc \
     Package_reversemap \
diff --git a/tools/bootstrp/sspretty.cxx b/tools/bootstrp/sspretty.cxx
deleted file mode 100644
index 5a27cf7..0000000
--- a/tools/bootstrp/sspretty.cxx
+++ /dev/null
@@ -1,62 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- * 
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org 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 Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org.  If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_tools.hxx"
-#include <tools/iparser.hxx>
-#include <tools/geninfo.hxx>
-#include <stdio.h>
-
-
-/*****************************************************************************/
-#ifdef UNX
-int main( int argc, char *argv[] )
-#else
-int _cdecl main( int argc, char *argv[] )
-#endif
-/*****************************************************************************/
-{
-    if ( argc != 2 ) {
-        fprintf( stdout, "\nsspretty.exe v1.0 (c) 2001\n\n" );
-        fprintf( stdout, "Syntax:  sspretty filename\n" );
-    }
-    else {
-        String aFileName( argv[ 1 ], RTL_TEXTENCODING_ASCII_US );
-        InformationParser aParser;
-        GenericInformationList *pList = aParser.Execute( aFileName );
-        if ( pList ) 
-            aParser.Save( aFileName, pList );
-        else {
-            fprintf( stderr, "Error reading input file!\n" );
-            return 1;
-        }
-    }
-    return 0;
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */


More information about the Libreoffice-commits mailing list