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
Showing
123 changed files
with
7,234 additions
and
1,206 deletions.
There are no files selected for viewing
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-2019 Live Networks, Inc. All rights reserved. | ||
// Copyright (c) 1996-2020 Live Networks, Inc. All rights reserved. | ||
|
||
#ifndef _BASICUSAGEENVIRONMENT_VERSION_HH | ||
#define _BASICUSAGEENVIRONMENT_VERSION_HH | ||
|
||
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2019.05.29" | ||
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1559088000 | ||
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_STRING "2020.04.24" | ||
#define BASICUSAGEENVIRONMENT_LIBRARY_VERSION_INT 1587686400 | ||
|
||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
// Version information for the "UsageEnvironment" library | ||
// Copyright (c) 1996-2019 Live Networks, Inc. All rights reserved. | ||
// Copyright (c) 1996-2020 Live Networks, Inc. All rights reserved. | ||
|
||
#ifndef _USAGEENVIRONMENT_VERSION_HH | ||
#define _USAGEENVIRONMENT_VERSION_HH | ||
|
||
#define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2019.05.29" | ||
#define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1559088000 | ||
#define USAGEENVIRONMENT_LIBRARY_VERSION_STRING "2020.04.24" | ||
#define USAGEENVIRONMENT_LIBRARY_VERSION_INT 1587686400 | ||
|
||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
COMPILE_OPTS = $(INCLUDES) -I. -O -DBSD=1 -DNEWLOCALE_NOT_USED=1 -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1 -DNO_OPENSSL=1 | ||
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 = ar cr | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
COMPILE_OPTS = $(INCLUDES) -I. -O2 -DSOCKLEN_T=socklen_t -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 -DNO_OPENSSL=1 | ||
C = c | ||
C_COMPILER = cc | ||
C_FLAGS = $(COMPILE_OPTS) $(CPPFLAGS) $(CFLAGS) | ||
CPP = cpp | ||
CPLUSPLUS_COMPILER = c++ | ||
CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -DBSD=1 $(CPPFLAGS) $(CXXFLAGS) | ||
OBJ = o | ||
LINK = c++ -o | ||
LINK_OPTS = -L. $(LDFLAGS) | ||
CONSOLE_LINK_OPTS = $(LINK_OPTS) | ||
LIBRARY_LINK = ar cr | ||
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
Oops, something went wrong.