# HG changeset patch # User Zheng Shen # Date 1276149024 -28800 # Node ID 238f4cb8391fc57fc6b5ec9589c0dda28ac755c0 # Parent 56dd7656a965e71b8edaa4e2f626ee7bc70e85ec Minor: remove backup file with incorrect license info diff -r 56dd7656a965 -r 238f4cb8391f e32tools/e32lib/e32image/Makefile.elftran.bak --- a/e32tools/e32lib/e32image/Makefile.elftran.bak Tue Jun 08 16:53:13 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -# Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). -# All rights reserved. -# This component and the accompanying materials are made available -# under the terms of the License "Symbian Foundation License v1.0" -# which accompanies this distribution, and is available -# at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". -# -# Initial Contributors: -# Nokia Corporation - initial contribution. -# -# Contributors: -# -# Description: -# - -CXX = g++296 -CXXFLAGS = -D__SUPPORT_ELF_FILES__ -D__LINUX__ -D__GCC32__ -D__TOOLS__ -D EKA2 \ - -I $(EPOCROOT)epoc32/include -I ../inc -I ../elftools/inc -SOURCE = elf_file.cpp elf_dlld.cpp elf_imp.cpp elf_reloc.cpp elf_tran.cpp \ - e32uid.cpp \ - h_file.cpp h_mem.cpp h_utl.cpp \ - e32image.cpp tr_main.cpp imgdump.cpp \ - decode.cpp encode.cpp deflate.cpp inflate.cpp panic.cpp compress.cpp -BLDDIR = ../build-elftran -OBJECT = $(addprefix $(BLDDIR)/, $(notdir $(SOURCE:.cpp=.o))) -TARGET = $(BLDDIR)/elftran - -VPATH = ../host ../e32uid ../e32image ../e32image/deflate ../elftools/elftran - -_dummy := $(shell mkdir -p $(BLDDIR)) - -all: $(TARGET) - -$(TARGET): $(OBJECT) - $(CXX) $^ -o $@ - strip $@ - -$(OBJECT): $(BLDDIR)/%.o: %.cpp - $(CXX) $(CXXFLAGS) -c $< -o $@ - -clean: - rm -f $(OBJECT) $(TARGET) - -rmdir $(BLDDIR) - -.PHONY: all clean - diff -r 56dd7656a965 -r 238f4cb8391f e32tools/elf2e32/source/h_utl.h.bak --- a/e32tools/elf2e32/source/h_utl.h.bak Tue Jun 08 16:53:13 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,128 +0,0 @@ -// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). -// All rights reserved. -// This component and the accompanying materials are made available -// under the terms of "Eclipse Public License v1.0" -// which accompanies this distribution, and is available -// at the URL "http://www.eclipse.org/legal/epl-v10.html". -// -// Initial Contributors: -// Nokia Corporation - initial contribution. -// -// Contributors: -// -// Description: -// All rights reserved. -// This component and the accompanying materials are made available -// under the terms of the License "Symbian Foundation License v1.0" -// which accompanies this distribution, and is available -// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". -// Initial Contributors: -// Nokia Corporation - initial contribution. -// Contributors: -// All rights reserved. -// This component and the accompanying materials are made available -// under the terms of the License "Symbian Foundation License v1.0" -// which accompanies this distribution, and is available -// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". -// Initial Contributors: -// Nokia Corporation - initial contribution. -// Contributors: -// - - - #ifndef __H_UTL_H__ - #define __H_UTL_H__ - -#include "e32defwrap.h" -#include -#include - -#ifdef __TOOLS2__ -#include -#include -using namespace std; -#else -#include -#endif - - /** - Convert string to number. - @internalComponent - @released - */ - template - TInt Val(T& aVal, char* aStr) - { - - - T x; - #ifdef __TOOLS2__ - istringstream val(aStr); - #else - istrstream val(aStr,strlen(aStr)); - #endif - val >> x; - if (!val.eof() || val.fail()) - return KErrGeneral; - aVal=x; - return KErrNone; - - /*T x; - istrstream val(aStr,strlen(aStr)); - val >> x; - if (!val.eof() || val.fail()) - return KErrGeneral; - aVal=x; - return KErrNone;*/ - } - - - //enum for decompose flag - enum TDecomposeFlag - { - EUidPresent=1, - EVerPresent=2 - }; - - /** - class for FileNameInfo - @internalComponent - @released - */ - class TFileNameInfo - { - public: - TFileNameInfo(const char* aFileName, TBool aLookForUid); - public: - const char* iFileName; - TInt iTotalLength; - TInt iBaseLength; - TInt iExtPos; - TUint32 iUid3; - TUint32 iModuleVersion; - TUint32 iFlags; - }; - - extern char* NormaliseFileName(const char* aName); - - - - #ifdef __LINUX__ - // Case insensitive comparison functions are named differently on Linux - #define stricmp strcasecmp - #define strnicmp strncasecmp - - // Convert the provided string to Uppercase - char* strupr(char *a); - #endif // __LINUX__ - - #endif // __H_UTL_H__ - - - - - - - - - diff -r 56dd7656a965 -r 238f4cb8391f imgtools/buildrom/tools/cdf.dtd.bak --- a/imgtools/buildrom/tools/cdf.dtd.bak Tue Jun 08 16:53:13 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 56dd7656a965 -r 238f4cb8391f imgtools/buildrom/tools/featuredatabase.dtd.bak --- a/imgtools/buildrom/tools/featuredatabase.dtd.bak Tue Jun 08 16:53:13 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - diff -r 56dd7656a965 -r 238f4cb8391f imgtools/buildrom/tools/featureuids.dtd.bak --- a/imgtools/buildrom/tools/featureuids.dtd.bak Tue Jun 08 16:53:13 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,33 +0,0 @@ - - - - - - - - - - - - diff -r 56dd7656a965 -r 238f4cb8391f imgtools/buildrom/tools/imageContent.dtd.bak --- a/imgtools/buildrom/tools/imageContent.dtd.bak Tue Jun 08 16:53:13 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -