summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkos <kos@dev3>2013-11-04 10:39:00 (GMT)
committerkos <kos@dev3>2013-11-04 10:39:00 (GMT)
commitb9eccfef44d067ad8b50fc40a48c0d3a1b1872d8 (patch)
tree1a29a1cf6e3e00af8dd426fdf54fee51594a3e35
parentbfd3687dc12aef8e90c88a9dc45bdbfb9ed60608 (diff)
change name from filestreamproxy to transtreamproxy.
increase version. added ignore file.
-rw-r--r--.gitignore2
-rw-r--r--configure.ac4
-rw-r--r--src/Makefile.am19
-rw-r--r--src/Makefile.manual6
4 files changed, 19 insertions, 12 deletions
diff --git a/.gitignore b/.gitignore
index dc6a415..ecd2208 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
+streamproxy
filestreamproxy
+transtreamproxy
*.ts
*.log
*.o
diff --git a/configure.ac b/configure.ac
index 81503a6..216ff3d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.
#AC_PREREQ([2.69])
-AC_INIT([filestreamproxy], [1.0.0], [oskwon@marusys.com])
-AM_INIT_AUTOMAKE([filestreamproxy], [1.0.0])
+AC_INIT([transtreamproxy], [2.0.0], [kos@dev3])
+AM_INIT_AUTOMAKE([transtreamproxy], [2.0.0])
#AC_CONFIG_SRCDIR([main.cpp])
AC_CONFIG_HEADERS([config.h])
diff --git a/src/Makefile.am b/src/Makefile.am
index 06573d0..03775d7 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,11 +1,16 @@
## Process this file with automake to produce Makefile.in
-bin_PROGRAMS = filestreamproxy
-filestreamproxy_SOURCES = main.cpp
-filestreamproxy_SOURCES += eFilePumpThread.cpp
-filestreamproxy_SOURCES += eNetworkPumpThread.cpp
-filestreamproxy_SOURCES += eURIDecoder.cpp
-filestreamproxy_SOURCES += uThread.cpp
+bin_PROGRAMS = transtreamproxy
+transtreamproxy_SOURCES = \
+ main.cpp \
+ uThread.cpp \
+ eParser.cpp \
+ eURIDecoder.cpp \
+ eUpstreamSocket.cpp \
+ eTransCodingDevice.cpp \
+ eFilePumpThread.cpp \
+ eNetworkPumpThread.cpp \
+ eDemuxPumpThread.cpp
-filestreamproxy_LDADD = $(LIBLTDL) @PTHREAD_LIBS@
+transtreamproxy_LDADD = $(LIBLTDL) @PTHREAD_LIBS@
diff --git a/src/Makefile.manual b/src/Makefile.manual
index 12b4bde..3cfd8ba 100644
--- a/src/Makefile.manual
+++ b/src/Makefile.manual
@@ -8,9 +8,9 @@
include .config
-VER = v1.0
+VER = v2.0
REV = $(shell cat .revision)
-BIN = filestreamproxy
+BIN = transtreamproxy
SRC = \
main.cpp \
@@ -104,7 +104,7 @@ erase:clean
.version:
@echo "/*" > version.h
- @echo " * uVersion.h" >> version.h
+ @echo " * version.h" >> version.h
@echo " * Auto generated code." >> version.h
@echo " */" >> version.h
@echo "#ifndef UVERSION_H_" >> version.h