Browse Source

+ Forgot to commit dummy clocale. It has caused Issue #23931.

git-svn-id: trunk@23648 -
yury 12 years ago
parent
commit
65d610902b
2 changed files with 24 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 23 0
      rtl/android/clocale.pp

+ 1 - 0
.gitattributes

@@ -7413,6 +7413,7 @@ rtl/android/Makefile svneol=native#text/plain
 rtl/android/Makefile.fpc svneol=native#text/plain
 rtl/android/arm/dllprt0.as svneol=native#text/plain
 rtl/android/arm/prt0.as svneol=native#text/plain
+rtl/android/clocale.pp svneol=native#text/plain
 rtl/android/cwstring.pp svneol=native#text/plain
 rtl/android/i386/dllprt0.as svneol=native#text/plain
 rtl/android/i386/prt0.as svneol=native#text/plain

+ 23 - 0
rtl/android/clocale.pp

@@ -0,0 +1,23 @@
+{
+    This file is part of the Free Pascal run time library.
+    Copyright (c) 2013 by the Free Pascal development team.
+
+    Android locale support. !!! NOT IMPLEMENTED !!!
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    This program 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.
+ **********************************************************************}
+
+unit clocale;
+
+{$mode objfpc}
+
+interface
+
+implementation
+
+end.