Skip to content

Commit 5033892

Browse files
committed
init
0 parents  commit 5033892

11 files changed

+3634
-0
lines changed

.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
*.cmake
2+
*.dSYM
3+
*.exp
4+
*.la
5+
*.lo
6+
*.log
7+
*.o
8+
*.plist
9+
*.scan
10+
*.sdf
11+
*.status
12+
*.tar.*
13+
*~
14+
.DS_Store
15+
.deps
16+
.dirstamp
17+
.done
18+
.libs
19+
Build
20+
Makefile
21+
Makefile.in
22+
aclocal.m4
23+
autom4te.cache
24+
build
25+
compile
26+
confdefs.h
27+
config.h
28+
configure
29+
depcomp
30+
android-toolchain
31+
install-sh
32+
libtool
33+
ltmain.sh
34+
m4/argz.m4
35+
m4/libtool.m4
36+
m4/ltoptions.m4
37+
m4/ltsugar.m4
38+
m4/ltversion.m4
39+
m4/lt~obsolete.m4
40+
src/shadowvpn
41+
missing
42+
stamp-h1

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "libsodium"]
2+
path = libsodium
3+
url = https://github.com/jedisct1/libsodium.git

Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SUBDIRS = src

autogen.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#! /bin/sh
2+
3+
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
4+
exec autoreconf -ivf
5+
fi
6+
7+
if glibtoolize --version > /dev/null 2>&1; then
8+
LIBTOOLIZE='glibtoolize'
9+
else
10+
LIBTOOLIZE='libtoolize'
11+
fi
12+
13+
$LIBTOOLIZE && \
14+
aclocal && \
15+
automake --add-missing --force-missing --include-deps && \
16+
autoconf

0 commit comments

Comments
 (0)