Import vtun.drivers, add an autogen.sh script to create autoconf files

This commit is contained in:
Frank Denis 2015-10-08 00:43:56 +02:00
parent 59e5f82dc7
commit 10328691e5
6 changed files with 33 additions and 7756 deletions

21
.gitignore vendored Normal file
View File

@ -0,0 +1,21 @@
*.o
*~
Makefile
autom4te.cache
cfg_file.lex.c
cfg_file.tab.c
cfg_file.tab.h
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
install-sh
pipe_dev.c
pty_dev.c
tap_dev.c
tcp_proto.c
tun_dev.c
udp_proto.c

6
autogen.sh Executable file
View File

@ -0,0 +1,6 @@
#! /bin/sh
aclocal && \
autoheader && \
autoconf && \
automake --add-missing 2> /dev/null

View File

@ -1,76 +0,0 @@
/* config.h.in. Generated automatically from configure.in by autoheader. */
/* Define to empty if the keyword does not work. */
#undef const
/* Define as __inline if that's what the C compiler calls it. */
#undef inline
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define if you have the gettimeofday function. */
#undef HAVE_GETTIMEOFDAY
/* Define if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* Define if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
/* Define if you have the <netinet/ip.h> header file. */
#undef HAVE_NETINET_IP_H
/* Define if you have the <netinet/tcp.h> header file. */
#undef HAVE_NETINET_TCP_H
/* Define if you have the <netinet/in_systm.h> header file. */
#undef HAVE_NETINET_IN_SYSTM_H
/* Define if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H
/* Define if you have the <sched.h> header file. */
#undef HAVE_SCHED_H
/* Define if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H
/* Define if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
/* Define if you have the <sys/sockio.h> header file. */
#undef HAVE_SYS_SOCKIO_H
/* Define if you have the <linux/if_tun.h> header file. */
#undef HAVE_LINUX_IF_TUN_H
/* Define if you have setproctitle. */
#undef HAVE_SETPROC_TITLE
#undef HAVE_LIBUTIL_H
/* Define if you have ZLIB */
#undef HAVE_ZLIB
/* Define if you have LZO */
#undef HAVE_LZO
/* Define if you have OpenSSL */
#undef HAVE_SSL
#undef HAVE_SSL_BLOWFISH
#undef HAVE_SSL_AES
#undef HAVE_SSL_EVP
#undef HAVE_SHAPER
#undef ENABLE_NAT_HACK
/* Release version and date */
#undef VTUN_VER

7680
configure vendored

File diff suppressed because it is too large Load Diff

6
vtun.drivers Normal file
View File

@ -0,0 +1,6 @@
tun_dev.c
tap_dev.c
pty_dev.c
pipe_dev.c
tcp_proto.c
udp_proto.c