In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/3f16acfd45f6cf4dce6b90474f865dee8636a1a0?hp=7df6222977504e410ceadf36c0e45ae17aacbf21>

- Log -----------------------------------------------------------------
commit 3f16acfd45f6cf4dce6b90474f865dee8636a1a0
Author: Adam Russell <[email protected]>
Date:   Fri Jul 3 01:35:46 2009 -0400

    Osvaldo Villalon's changes to symbian_dll.cpp.=0A=
    
    This patch adds some backwards compatibility for older
    SDKs.
    
    Signed-off-by: H.Merijn Brand <[email protected]>
-----------------------------------------------------------------------

Summary of changes:
 symbian/symbian_dll.cpp |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/symbian/symbian_dll.cpp b/symbian/symbian_dll.cpp
index a206c99..a1e61a4 100644
--- a/symbian/symbian_dll.cpp
+++ b/symbian/symbian_dll.cpp
@@ -10,6 +10,12 @@
 #include <e32base.h>
 #include "PerlBase.h"
 
+#ifdef __SERIES60_3X__ 
+EXPORT_C GLDEF_C TInt E32Dll(/*TDllReason aReason*/) { return KErrNone; }
+#else
+EXPORT_C GLDEF_C TInt E32Dll(TDllReason /*aReason*/) { return KErrNone; }
+#endif
+
 extern "C" {
     EXPORT_C void* symbian_get_vars(void)         { return Dll::Tls(); }
     EXPORT_C void  symbian_set_vars(const void *p) { Dll::SetTls((TAny*)p); }

--
Perl5 Master Repository

Reply via email to