diff options
author | Tobias Markmann <tm@ayena.de> | 2015-09-24 18:59:52 (GMT) |
---|---|---|
committer | Swift Review <review@swift.im> | 2015-10-30 14:13:39 (GMT) |
commit | 3d62970e1b929cf676202fc6cebc1cf426c14ff2 (patch) | |
tree | a68c82c3829a001c6f8cadbb2d68d91c98f617bf /3rdParty/LibIDN/stubs | |
parent | 3cc7e86420e4b3d67c5882d8d68e1e6a003c6154 (diff) | |
download | swift-3d62970e1b929cf676202fc6cebc1cf426c14ff2.zip swift-3d62970e1b929cf676202fc6cebc1cf426c14ff2.tar.bz2 |
Update libIDN in 3rdParty to version 1.32
Updated existing libIDN files in 3rdParty folder to latest
1.32 version and added remaining dependencies for compilation.
Updated SConscript file accordingly.
Test-Information:
Build and ran test=unit on OS X 10.10.
Change-Id: Iec6506e1cc88fe2983b2019aca95a42580d1c80e
Diffstat (limited to '3rdParty/LibIDN/stubs')
-rw-r--r-- | 3rdParty/LibIDN/stubs/unused-parameter.h | 3 | ||||
-rw-r--r-- | 3rdParty/LibIDN/stubs/win32/stdbool.h | 40 |
2 files changed, 43 insertions, 0 deletions
diff --git a/3rdParty/LibIDN/stubs/unused-parameter.h b/3rdParty/LibIDN/stubs/unused-parameter.h new file mode 100644 index 0000000..2bea489 --- /dev/null +++ b/3rdParty/LibIDN/stubs/unused-parameter.h @@ -0,0 +1,3 @@ +#ifndef _GL_UNUSED_PARAMETER +#define _GL_UNUSED_PARAMETER +#endif diff --git a/3rdParty/LibIDN/stubs/win32/stdbool.h b/3rdParty/LibIDN/stubs/win32/stdbool.h new file mode 100644 index 0000000..c789c92 --- /dev/null +++ b/3rdParty/LibIDN/stubs/win32/stdbool.h @@ -0,0 +1,40 @@ +/* Copyright (C) 2008-2015 Free Software Foundation, Inc. + Written by Adam Strzelecki <ono@java.pl> + + This file is part of GNU Libidn. + + GNU Libidn is free software: you can redistribute it and/or + modify it under the terms of either: + + * the GNU Lesser General Public License as published by the Free + Software Foundation; either version 3 of the License, or (at + your option) any later version. + + or + + * the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at + your option) any later version. + + or both in parallel, as here. + + GNU Libidn 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 + General Public License for more details. + + You should have received copies of the GNU General Public License and + the GNU Lesser General Public License along with this program. If + not, see <http://www.gnu.org/licenses/>. */ + +#ifndef _STDBOOL_H +#define _STDBOOL_H + +#define _Bool signed char +enum { false = 0, true = 1 }; +#define bool _Bool +#define false 0 +#define true 1 +#define __bool_true_false_are_defined 1 + +#endif /* _STDBOOL_H */ |