Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit a8091b1

Browse files
committed
Initial import.
0 parents  commit a8091b1

File tree

2,651 files changed

+1352204
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,651 files changed

+1352204
-0
lines changed

.gitattributes

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Set default behaviour, in case users don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files we want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.c text
7+
*.h text
8+
*.cpp text
9+
*.m text
10+
*.mm text
11+
*.pbxproj text
12+
*.gitattributes text
13+
*.mk text
14+
15+
# Declare files that will always have CRLF line endings on checkout.
16+
*.sln text eol=crlf
17+
*.vcproj text eol=crlf
18+
19+
# Denote all files that are truly binary and should not be modified.
20+
*.png binary
21+
*.jpg binary
22+
*.rev binary
23+
*.livecode binary
24+
25+

.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Derived Files #
2+
#################
3+
libopenssl/stubs.cpp
4+
libopenssl/src/sslstubs.cpp
5+
6+
# Compiled source #
7+
###################
8+
*.com
9+
*.class
10+
*.dll
11+
*.exe
12+
*.o
13+
*.so
14+
*.obj
15+
16+
# Packages #
17+
############
18+
# it's better to unpack these files and commit the raw source
19+
# git has its own built in compression methods
20+
*.7z
21+
*.dmg
22+
*.gz
23+
*.iso
24+
*.jar
25+
*.rar
26+
*.tar
27+
*.zip
28+
29+
# Logs and databases #
30+
######################
31+
*.log
32+
*.sql
33+
*.sqlite
34+
35+
# OS generated files #
36+
######################
37+
.DS_Store
38+
.DS_Store?
39+
._*
40+
.Spotlight-V100
41+
.Trashes
42+
Icon?
43+
ehthumbs.db
44+
Thumbs.db
45+
46+
# Versioning files #
47+
####################
48+
.svn/
49+
50+
# Project setting files #
51+
#########################
52+
*.pbxuser
53+
*.perspectivev3
54+
xcuserdata/
55+
*.vcproj.*.user

Android.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include $(call all-subdir-makefiles)

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)