Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- From 03171e55132e8cc64e500b3be640583b02b752b8 Mon Sep 17 00:00:00 2001
- From: Liang Qi <cavendish.qi@nokia.com>
- Date: Tue, 26 Jul 2011 16:43:00 +0200
- Subject: [PATCH] Patch Symbian3 PDK 3.0.4 to support makefile build system
- ---
- epoc32/include/bldqt.hrh | 10 +++++
- epoc32/include/mw/AiwVariant.h | 2 +-
- epoc32/include/mw/Aknvolumecontrol.h | 2 +-
- epoc32/include/mw/cmdefconnvalues.h | 8 ++--
- epoc32/include/platform/mw/schemehandler.h | 2 +-
- epoc32/include/platform/mw/schemehandler.inl | 2 +-
- epoc32/include/variant/Symbian_OS.hrh | 5 +++
- epoc32/tools/bmconv | 27 ++++++++++++++
- epoc32/tools/cjpeg | 27 ++++++++++++++
- epoc32/tools/elf2e32 | 37 +++++++++++++++++++
- epoc32/tools/elftran | 27 ++++++++++++++
- epoc32/tools/extmake | 27 ++++++++++++++
- epoc32/tools/genstubs | 27 ++++++++++++++
- epoc32/tools/getexports | 27 ++++++++++++++
- epoc32/tools/makekeys | 27 ++++++++++++++
- epoc32/tools/makesis | 27 ++++++++++++++
- epoc32/tools/mifconv | 51 ++++++++++++++++++++++++++
- epoc32/tools/petran | 27 ++++++++++++++
- epoc32/tools/pfsdump | 27 ++++++++++++++
- epoc32/tools/rcomp | 27 ++++++++++++++
- epoc32/tools/rtf2ptml | 27 ++++++++++++++
- epoc32/tools/signsis | 27 ++++++++++++++
- 22 files changed, 462 insertions(+), 8 deletions(-)
- create mode 100644 epoc32/include/bldqt.hrh
- create mode 100755 epoc32/tools/bmconv
- create mode 100755 epoc32/tools/cjpeg
- create mode 100755 epoc32/tools/elf2e32
- create mode 100755 epoc32/tools/elftran
- create mode 100755 epoc32/tools/extmake
- create mode 100755 epoc32/tools/genstubs
- create mode 100755 epoc32/tools/getexports
- create mode 100755 epoc32/tools/makekeys
- create mode 100755 epoc32/tools/makesis
- create mode 100755 epoc32/tools/mifconv
- create mode 100755 epoc32/tools/petran
- create mode 100755 epoc32/tools/pfsdump
- create mode 100755 epoc32/tools/rcomp
- create mode 100755 epoc32/tools/rtf2ptml
- create mode 100755 epoc32/tools/signsis
- diff --git a/epoc32/include/bldqt.hrh b/epoc32/include/bldqt.hrh
- new file mode 100644
- index 0000000..ac3ca37
- --- /dev/null
- +++ b/epoc32/include/bldqt.hrh
- @@ -0,0 +1,10 @@
- +/*
- + * This file contains macro definitions required to build Qt against this
- + * SDK.
- + */
- +
- +/**
- +QtOpenVG requires OpenVG 1.1
- +*/
- +#define __OPENVGHEADERS_USE_VG_1_1
- +
- diff --git a/epoc32/include/mw/AiwVariant.h b/epoc32/include/mw/AiwVariant.h
- index 9906bb3..4b5514f 100644
- --- a/epoc32/include/mw/AiwVariant.h
- +++ b/epoc32/include/mw/AiwVariant.h
- @@ -112,7 +112,7 @@ class TAiwVariant
- *
- * @param aValue The source object.
- */
- - IMPORT_C TAiwVariant& TAiwVariant::operator=(const TAiwVariant& aValue);
- + IMPORT_C TAiwVariant& operator=(const TAiwVariant& aValue);
- // This class does not need a destructor because memory allocation
- // policy for variant class has been implemented by TAiwGenericParam
- diff --git a/epoc32/include/mw/Aknvolumecontrol.h b/epoc32/include/mw/Aknvolumecontrol.h
- index ac6d55d..99344c0 100644
- --- a/epoc32/include/mw/Aknvolumecontrol.h
- +++ b/epoc32/include/mw/Aknvolumecontrol.h
- @@ -270,7 +270,7 @@ class CAknVolumeControl : public CAknControl, public MAknNaviDecoratorObserver
- *
- * @return Colume value scaled to range of [0-10].
- */
- - TInt CAknVolumeControl::ScaledValue() const;
- + TInt ScaledValue() const;
- /*
- * Set extended touch area to be used
- diff --git a/epoc32/include/mw/cmdefconnvalues.h b/epoc32/include/mw/cmdefconnvalues.h
- index 9cb6cee..d7bb990 100644
- --- a/epoc32/include/mw/cmdefconnvalues.h
- +++ b/epoc32/include/mw/cmdefconnvalues.h
- @@ -56,18 +56,18 @@ struct TCmDefConnValue
- // TCmDefConnValue::operator==
- // -----------------------------------------------------------------------------
- //
- - inline TBool TCmDefConnValue::operator==( TCmDefConnValue& aDCSettingSelection ) const
- + inline TBool operator==( TCmDefConnValue& aDCSettingSelection ) const
- {
- return ( (iType == aDCSettingSelection.iType) && ( iId == aDCSettingSelection.iId ) );
- - };
- + }
- // -----------------------------------------------------------------------------
- // TCmDefConnValue::operator!=
- // -----------------------------------------------------------------------------
- //
- - inline TBool TCmDefConnValue::operator!=( TCmDefConnValue& aDCSettingSelection ) const
- + inline TBool operator!=( TCmDefConnValue& aDCSettingSelection ) const
- {
- return (!( (iType == aDCSettingSelection.iType) && ( iId == aDCSettingSelection.iId ) ));
- - };
- + }
- };
- #endif // C_CMDEFCONNVALUES_H
- diff --git a/epoc32/include/platform/mw/schemehandler.h b/epoc32/include/platform/mw/schemehandler.h
- index 883e0e2..f926d9b 100644
- --- a/epoc32/include/platform/mw/schemehandler.h
- +++ b/epoc32/include/platform/mw/schemehandler.h
- @@ -95,6 +95,6 @@ class CSchemeHandler : public CBase
- CAiwGenericParamList* iParamList; ///< OWNS
- };
- -#include <SchemeHandler.inl>
- +#include <schemehandler.inl>
- #endif /* def SCHEME_HANDLER_H */
- diff --git a/epoc32/include/platform/mw/schemehandler.inl b/epoc32/include/platform/mw/schemehandler.inl
- index b092d28..bf015e0 100644
- --- a/epoc32/include/platform/mw/schemehandler.inl
- +++ b/epoc32/include/platform/mw/schemehandler.inl
- @@ -20,7 +20,7 @@
- // INCLUDE FILES
- -#include <SchemeDefs.hrh>
- +#include <schemedefs.hrh>
- #include <ecom/ecom.h> // For REComSession
- // ================= CONSTANTS =======================
- diff --git a/epoc32/include/variant/Symbian_OS.hrh b/epoc32/include/variant/Symbian_OS.hrh
- index 6c7215f..ee911a9 100644
- --- a/epoc32/include/variant/Symbian_OS.hrh
- +++ b/epoc32/include/variant/Symbian_OS.hrh
- @@ -2106,3 +2106,8 @@ If SYMBIAN_GRAPHICS_BUILD_OPENWF_WSERV, the windowserver component is built to u
- */
- #define SYMBIAN_GRAPHICS_BUILD_OPENWF_WSERV
- +/**
- +Include macro definitions required to build Qt
- +*/
- +#include "bldqt.hrh"
- +
- diff --git a/epoc32/tools/bmconv b/epoc32/tools/bmconv
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/bmconv
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/cjpeg b/epoc32/tools/cjpeg
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/cjpeg
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/elf2e32 b/epoc32/tools/elf2e32
- new file mode 100755
- index 0000000..ae4f600
- --- /dev/null
- +++ b/epoc32/tools/elf2e32
- @@ -0,0 +1,37 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +# Work around a bug in wine if the process stack size is unlimited. It makes
- +# elf2e32 misbehave and report too many missing symbols in DEF files.
- +# GNU make usually sets this size.
- +# Note that this fix does not always work. The fix has been verified working
- +# with wine-1.2.2 and verified *not* working with wine-1.3.17.
- +# 64-bit platforms seem to be unaffected by the bug.
- +if [ `ulimit -S -s` == "unlimited" ]; then
- + ulimit -S -s 8192
- +fi
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/elftran b/epoc32/tools/elftran
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/elftran
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/extmake b/epoc32/tools/extmake
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/extmake
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/genstubs b/epoc32/tools/genstubs
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/genstubs
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/getexports b/epoc32/tools/getexports
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/getexports
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/makekeys b/epoc32/tools/makekeys
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/makekeys
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/makesis b/epoc32/tools/makesis
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/makesis
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/mifconv b/epoc32/tools/mifconv
- new file mode 100755
- index 0000000..6f97be3
- --- /dev/null
- +++ b/epoc32/tools/mifconv
- @@ -0,0 +1,51 @@
- +#!/usr/bin/env perl
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +# call wine mifconv.exe
- +# export EPOCROOT with backslashes instead of normal slashes
- +# and convert all slashes in the arguments to be backslashes, except for
- +# slashes starting options.
- +
- +my $epocroot = $ENV{"EPOCROOT"};
- +$epocroot =~ s/\\/\//g;
- +$command = "wine ". $epocroot . "/epoc32/tools/mifconv.exe";
- +
- +push (@ARGV, "-t/tmp");
- +for my $arg (@ARGV) {
- + my $isOption = $arg=~/^\/[HEPTBSVFAC1-8].*/i;
- + $isOption = 0 if -e $arg; # If this is an existing file name, don't treat it as an option.
- + $isOption = 0 if ($arg =~ /\.mif$/); # If this is the output file name, don't treat it as an option.
- + $arg=~s/\//\\\\/g; # replace all
- + if ($isOption) {
- + $arg=~s/^\\\\/\//; # replace first backslashes back to a slash
- + }
- + $command="$command \"$arg\"";
- +}
- +
- +# Set EPOCROOT to a version with backslashes, for mifconv
- +my $epocroot = $ENV{"EPOCROOT"};
- +$epocroot=~s/\//\\/g; # replace all
- +$ENV{"EPOCROOT"} = $epocroot;
- +
- +my $ret = system ($command) >> 8;
- +exit($ret);
- diff --git a/epoc32/tools/petran b/epoc32/tools/petran
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/petran
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/pfsdump b/epoc32/tools/pfsdump
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/pfsdump
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/rcomp b/epoc32/tools/rcomp
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/rcomp
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/rtf2ptml b/epoc32/tools/rtf2ptml
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/rtf2ptml
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- diff --git a/epoc32/tools/signsis b/epoc32/tools/signsis
- new file mode 100755
- index 0000000..0801735
- --- /dev/null
- +++ b/epoc32/tools/signsis
- @@ -0,0 +1,27 @@
- +#!/bin/sh
- +# Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
- +# All rights reserved.
- +# Contact: Nokia Corporation ([email protected])
- +#
- +# This file is part of the S60 SDK
- +#
- +# This library is free software; you can redistribute it and/or
- +# modify it under the terms of the GNU Library General Public
- +# License as published by the Free Software Foundation; either
- +# version 2.1 of the License, or (at your option) any later version.
- +#
- +# This library 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
- +# Library General Public License for more details.
- +#
- +# You should have received a copy of the GNU Library General Public License
- +# along with this library; see the file COPYING.LIB. If not, write to
- +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- +# Boston, MA 02110-1301, USA.
- +#
- +#############################################################################
- +
- +tool="`basename $0`.exe"
- +echo "Calling $tool"
- +wine $EPOCROOT/epoc32/tools/$tool "$@"
- --
- 1.7.5.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement