Skip to content

Commit

Permalink
Bump to 2018.04.25
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Gaufman committed Jun 18, 2018
1 parent 1e53b79 commit 73b3e77
Show file tree
Hide file tree
Showing 419 changed files with 670 additions and 1,528 deletions.
17 changes: 17 additions & 0 deletions #config.macosx#
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 =
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/BasicHashTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Hash Table implementation
// Implementation

Expand Down
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/BasicTaskScheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Usage Environment: for a simple, non-scripted, console application
// Implementation

Expand Down
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/BasicTaskScheduler0.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Usage Environment: for a simple, non-scripted, console application
// Implementation

Expand Down
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/BasicUsageEnvironment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Usage Environment: for a simple, non-scripted, console application
// Implementation

Expand Down
4 changes: 3 additions & 1 deletion BasicUsageEnvironment/BasicUsageEnvironment0.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Usage Environment: for a simple, non-scripted, console application
// Implementation

Expand Down Expand Up @@ -68,6 +68,7 @@ void BasicUsageEnvironment0::setResultErrMsg(MsgString msg, int err) {

if (err == 0) err = getErrno();
#if defined(__WIN32__) || defined(_WIN32) || defined(_WIN32_WCE)
#ifndef _UNICODE
char errMsg[RESULT_MSG_BUFFER_MAX] = "\0";
if (0 != FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, NULL, err, 0, errMsg, sizeof(errMsg)/sizeof(errMsg[0]), NULL)) {
// Remove all trailing '\r', '\n' and '.'
Expand All @@ -77,6 +78,7 @@ void BasicUsageEnvironment0::setResultErrMsg(MsgString msg, int err) {
} else
snprintf(errMsg, sizeof(errMsg)/sizeof(errMsg[0]), "error %d", err);
appendToResultMsg(errMsg);
#endif
#else
appendToResultMsg(strerror(err));
#endif
Expand Down
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/DelayQueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017, Live Networks, Inc. All rights reserved
// Copyright (c) 1996-2018, Live Networks, Inc. All rights reserved
// Help by Carlo Bonamico to get working for Windows
// Delay queue
// Implementation
Expand Down
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/include/BasicHashTable.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Hash Table implementation
// C++ header

Expand Down
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/include/BasicUsageEnvironment.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Usage Environment: for a simple, non-scripted, console application
// C++ header

Expand Down
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/include/BasicUsageEnvironment0.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Usage Environment: for a simple, non-scripted, console application
// C++ header

Expand Down
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
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/include/DelayQueue.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017, Live Networks, Inc. All rights reserved
// Copyright (c) 1996-2018, Live Networks, Inc. All rights reserved
// Delay queue
// C++ header

Expand Down
2 changes: 1 addition & 1 deletion BasicUsageEnvironment/include/HandlerSet.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Basic Usage Environment: for a simple, non-scripted, console application
// C++ header

Expand Down
65 changes: 65 additions & 0 deletions Makefile
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
2 changes: 1 addition & 1 deletion UsageEnvironment/HashTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Generic Hash Table
// Implementation

Expand Down
2 changes: 1 addition & 1 deletion UsageEnvironment/UsageEnvironment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Usage Environment
// Implementation

Expand Down
2 changes: 1 addition & 1 deletion UsageEnvironment/include/HashTable.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Generic Hash Table
// C++ header

Expand Down
2 changes: 1 addition & 1 deletion UsageEnvironment/include/UsageEnvironment.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Usage Environment
// C++ header

Expand Down
6 changes: 3 additions & 3 deletions UsageEnvironment/include/UsageEnvironment_version.hh
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
2 changes: 1 addition & 1 deletion UsageEnvironment/include/strDup.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ along with this library; if not, write to the Free Software Foundation, Inc.,
#ifndef _STRDUP_HH
#define _STRDUP_HH

// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// A C++ equivalent to the standard C routine "strdup()".
// This generates a char* that can be deleted using "delete[]"
// Header
Expand Down
2 changes: 1 addition & 1 deletion UsageEnvironment/strDup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// A C++ equivalent to the standard C routine "strdup()".
// This generates a char* that can be deleted using "delete[]"
// Implementation
Expand Down
2 changes: 1 addition & 1 deletion WindowsAudioInputDevice/WindowsAudioInputDevice_common.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Windows implementation of a generic audio input device
// Base class for both library versions:
// One that uses Windows' built-in software mixer; another that doesn't.
Expand Down
2 changes: 1 addition & 1 deletion WindowsAudioInputDevice/WindowsAudioInputDevice_mixer.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Windows implementation of a generic audio input device
// This version uses Windows' built-in software mixer.
// C++ header
Expand Down
2 changes: 1 addition & 1 deletion WindowsAudioInputDevice/WindowsAudioInputDevice_noMixer.hh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// Windows implementation of a generic audio input device
// This version does not use Windows' built-in software mixer.
// C++ header
Expand Down
2 changes: 1 addition & 1 deletion WindowsAudioInputDevice/showAudioInputPorts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017, Live Networks, Inc. All rights reserved
// Copyright (c) 1996-2018, Live Networks, Inc. All rights reserved
// A program that prints out this computer's audio input ports

#include "AudioInputDevice.hh"
Expand Down
2 changes: 1 addition & 1 deletion config.cygwin
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=socklen_t -DXLOCALE_NOT_USED=1
COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=socklen_t -DNEWLOCALE_NOT_USED=1
C = c
C_COMPILER = gcc
C_FLAGS = $(COMPILE_OPTS) -DUSE_OUR_BZERO=1 -D__CYGWIN__
Expand Down
2 changes: 1 addition & 1 deletion config.cygwin-for-vlc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=socklen_t -DXLOCALE_NOT_USED=1
COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=socklen_t -DNEWLOCALE_NOT_USED=1
C = c
C_COMPILER = gcc
C_FLAGS = $(COMPILE_OPTS) -DUSE_OUR_BZERO=1 -D_WIN32 -mno-cygwin
Expand Down
2 changes: 1 addition & 1 deletion config.freebsd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
COMPILE_OPTS = $(INCLUDES) -I. -O -DBSD=1 -DXLOCALE_NOT_USED=1 -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1
COMPILE_OPTS = $(INCLUDES) -I. -O -DBSD=1 -DNEWLOCALE_NOT_USED=1 -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1
C = c
C_COMPILER = cc
C_FLAGS = $(COMPILE_OPTS)
Expand Down
8 changes: 4 additions & 4 deletions config.linux-with-shared-libraries
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# At least one interface changes, or is removed => CURRENT += 1; REVISION = 0; AGE = 0
# One or more interfaces were added, but no existing interfaces were changed or removed => CURRENT += 1; REVISION = 0; AGE += 1

libliveMedia_VERSION_CURRENT=60
libliveMedia_VERSION_REVISION=0
libliveMedia_VERSION_AGE=2
libliveMedia_VERSION_CURRENT=62
libliveMedia_VERSION_REVISION=5
libliveMedia_VERSION_AGE=0
libliveMedia_LIB_SUFFIX=so.$(shell expr $(libliveMedia_VERSION_CURRENT) - $(libliveMedia_VERSION_AGE)).$(libliveMedia_VERSION_AGE).$(libliveMedia_VERSION_REVISION)

libBasicUsageEnvironment_VERSION_CURRENT=1
libBasicUsageEnvironment_VERSION_REVISION=0
libBasicUsageEnvironment_VERSION_REVISION=1
libBasicUsageEnvironment_VERSION_AGE=0
libBasicUsageEnvironment_LIB_SUFFIX=so.$(shell expr $(libBasicUsageEnvironment_VERSION_CURRENT) - $(libBasicUsageEnvironment_VERSION_AGE)).$(libBasicUsageEnvironment_VERSION_AGE).$(libBasicUsageEnvironment_VERSION_REVISION)

Expand Down
2 changes: 1 addition & 1 deletion config.macosx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
COMPILE_OPTS = $(INCLUDES) -I. $(EXTRA_LDFLAGS) -DBSD=1 -O -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1 -DTIME_BASE=int
COMPILE_OPTS = $(INCLUDES) -I. $(EXTRA_LDFLAGS) -DBSD=1 -O -DSOCKLEN_T=socklen_t -DHAVE_SOCKADDR_LEN=1 -DTIME_BASE=int -DNEED_XLOCALE_H=1
C = c
C_COMPILER = cc
C_FLAGS = $(COMPILE_OPTS)
Expand Down
2 changes: 1 addition & 1 deletion config.solaris-32bit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
COMPILE_OPTS = $(INCLUDES) -I. -O -DSOLARIS -DXLOCALE_NOT_USED -DSOCKLEN_T=socklen_t
COMPILE_OPTS = $(INCLUDES) -I. -O -DSOLARIS -DNEWLOCALE_NOT_USED -DSOCKLEN_T=socklen_t
C = c
C_COMPILER = cc
C_FLAGS = $(COMPILE_OPTS)
Expand Down
2 changes: 1 addition & 1 deletion config.solaris-64bit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
COMPILE_OPTS = $(INCLUDES) -m64 -I. -O -DSOLARIS -DXLOCALE_NOT_USED -DSOCKLEN_T=socklen_t
COMPILE_OPTS = $(INCLUDES) -m64 -I. -O -DSOLARIS -DNEWLOCALE_NOT_USED -DSOCKLEN_T=socklen_t
C = c
C_COMPILER = cc
C_FLAGS = $(COMPILE_OPTS)
Expand Down
2 changes: 1 addition & 1 deletion groupsock/GroupEId.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017, Live Networks, Inc. All rights reserved
// Copyright (c) 1996-2018, Live Networks, Inc. All rights reserved
// "Group Endpoint Id"
// Implementation

Expand Down
2 changes: 1 addition & 1 deletion groupsock/Groupsock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// Copyright (c) 1996-2017 Live Networks, Inc. All rights reserved.
// Copyright (c) 1996-2018 Live Networks, Inc. All rights reserved.
// 'Group sockets'
// Implementation

Expand Down
Loading

0 comments on commit 73b3e77

Please sign in to comment.