forked from rgaufman/live555
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Roman Gaufman
committed
Jun 18, 2018
1 parent
1e53b79
commit 73b3e77
Showing
419 changed files
with
670 additions
and
1,528 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
COMPILE_OPTS = $(INCLUDES) -I. $(EXTRA_LDFLAGS) -DBSD=1 -O -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1 -DTIME_BASE=in | ||
C = c | ||
C_COMPILER = cc | ||
C_FLAGS = $(COMPILE_OPTS) | ||
CPP = cpp | ||
CPLUSPLUS_COMPILER = c++ | ||
CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall | ||
OBJ = o | ||
LINK = c++ -o | ||
LINK_OPTS = -L. | ||
CONSOLE_LINK_OPTS = $(LINK_OPTS) | ||
LIBRARY_LINK = libtool -s -o | ||
LIBRARY_LINK_OPTS = | ||
LIB_SUFFIX = a | ||
LIBS_FOR_CONSOLE_APPLICATION = | ||
LIBS_FOR_GUI_APPLICATION = | ||
EXE = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
BasicUsageEnvironment/include/BasicUsageEnvironment_version.hh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
// Version information for the "BasicUsageEnvironment" library | ||
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved. | ||
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved. | ||
|
||
#ifndef _BASICUSAGEENVIRONMENT_VERSION_HH | ||
#define _BASICUSAGEENVIRONMENT_VERSION_HH | ||
|
||
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2017.07.18" | ||
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1500336000 | ||
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2018.04.25" | ||
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1524614400 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
##### Change the following for your environment: | ||
COMPILE_OPTS = $(INCLUDES) -I. $(EXTRA_LDFLAGS) -DBSD=1 -O -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1 -DTIME_BASE=int | ||
C = c | ||
C_COMPILER = cc | ||
C_FLAGS = $(COMPILE_OPTS) | ||
CPP = cpp | ||
CPLUSPLUS_COMPILER = c++ | ||
CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall | ||
OBJ = o | ||
LINK = c++ -o | ||
LINK_OPTS = -L. | ||
CONSOLE_LINK_OPTS = $(LINK_OPTS) | ||
LIBRARY_LINK = libtool -s -o | ||
LIBRARY_LINK_OPTS = | ||
LIB_SUFFIX = a | ||
LIBS_FOR_CONSOLE_APPLICATION = | ||
LIBS_FOR_GUI_APPLICATION = | ||
EXE = | ||
##### End of variables to change | ||
|
||
LIVEMEDIA_DIR = liveMedia | ||
GROUPSOCK_DIR = groupsock | ||
USAGE_ENVIRONMENT_DIR = UsageEnvironment | ||
BASIC_USAGE_ENVIRONMENT_DIR = BasicUsageEnvironment | ||
|
||
TESTPROGS_DIR = testProgs | ||
|
||
MEDIA_SERVER_DIR = mediaServer | ||
|
||
PROXY_SERVER_DIR = proxyServer | ||
|
||
all: | ||
cd $(LIVEMEDIA_DIR) ; $(MAKE) | ||
cd $(GROUPSOCK_DIR) ; $(MAKE) | ||
cd $(USAGE_ENVIRONMENT_DIR) ; $(MAKE) | ||
cd $(BASIC_USAGE_ENVIRONMENT_DIR) ; $(MAKE) | ||
cd $(TESTPROGS_DIR) ; $(MAKE) | ||
cd $(MEDIA_SERVER_DIR) ; $(MAKE) | ||
cd $(PROXY_SERVER_DIR) ; $(MAKE) | ||
@echo | ||
@echo "For more information about this source code (including your obligations under the LGPL), please see our FAQ at http://live555.com/liveMedia/faq.html" | ||
|
||
install: | ||
cd $(LIVEMEDIA_DIR) ; $(MAKE) install | ||
cd $(GROUPSOCK_DIR) ; $(MAKE) install | ||
cd $(USAGE_ENVIRONMENT_DIR) ; $(MAKE) install | ||
cd $(BASIC_USAGE_ENVIRONMENT_DIR) ; $(MAKE) install | ||
cd $(TESTPROGS_DIR) ; $(MAKE) install | ||
cd $(MEDIA_SERVER_DIR) ; $(MAKE) install | ||
cd $(PROXY_SERVER_DIR) ; $(MAKE) install | ||
|
||
clean: | ||
cd $(LIVEMEDIA_DIR) ; $(MAKE) clean | ||
cd $(GROUPSOCK_DIR) ; $(MAKE) clean | ||
cd $(USAGE_ENVIRONMENT_DIR) ; $(MAKE) clean | ||
cd $(BASIC_USAGE_ENVIRONMENT_DIR) ; $(MAKE) clean | ||
cd $(TESTPROGS_DIR) ; $(MAKE) clean | ||
cd $(MEDIA_SERVER_DIR) ; $(MAKE) clean | ||
cd $(PROXY_SERVER_DIR) ; $(MAKE) clean | ||
|
||
distclean: clean | ||
-rm -f $(LIVEMEDIA_DIR)/Makefile $(GROUPSOCK_DIR)/Makefile \ | ||
$(USAGE_ENVIRONMENT_DIR)/Makefile $(BASIC_USAGE_ENVIRONMENT_DIR)/Makefile \ | ||
$(TESTPROGS_DIR)/Makefile $(MEDIA_SERVER_DIR)/Makefile \ | ||
$(PROXY_SERVER_DIR)/Makefile Makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
// Version information for the "UsageEnvironment" library | ||
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved. | ||
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved. | ||
|
||
#ifndef _USAGEENVIRONMENT_VERSION_HH | ||
#define _USAGEENVIRONMENT_VERSION_HH | ||
|
||
#define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2017.07.18" | ||
#define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1500336000 | ||
#define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2018.04.25" | ||
#define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1524614400 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.