[Scummvm-cvs-logs] scummvm master -> 631238ac5539f6a1b68cdb31a171866873a14d5b

lordhoto lordhoto at gmail.com
Fri Aug 2 04:02:58 CEST 2013


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
61b4981b12 BACKENDS: fix FTBFS on GNU Hurd by replacing MAXHOSTNAMELEN with NI_MAXHOST
631238ac55 Merge pull request #339 from onlyjob/hurd


Commit: 61b4981b120ae0c75d05f6f2c5012e269abb9f57
    https://github.com/scummvm/scummvm/commit/61b4981b120ae0c75d05f6f2c5012e269abb9f57
Author: Dmitry Smirnov (onlyjob at member.fsf.org)
Date: 2013-06-17T09:52:35-07:00

Commit Message:
BACKENDS: fix FTBFS on GNU Hurd by replacing MAXHOSTNAMELEN with NI_MAXHOST

Bug-ScummVM: https://sourceforge.net/tracker/?func=detail&atid=418820&aid=3614268&group_id=37116

See more in similar http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=387665

Changed paths:
    backends/midi/timidity.cpp



diff --git a/backends/midi/timidity.cpp b/backends/midi/timidity.cpp
index 5cefe66..d2c60be 100644
--- a/backends/midi/timidity.cpp
+++ b/backends/midi/timidity.cpp
@@ -148,7 +148,7 @@ MidiDriver_TIMIDITY::MidiDriver_TIMIDITY() {
 
 int MidiDriver_TIMIDITY::open() {
 	char *res;
-	char timidity_host[MAXHOSTNAMELEN];
+	char timidity_host[NI_MAXHOST];
 	int timidity_port, data_port, i;
 
 	/* count ourselves open */


Commit: 631238ac5539f6a1b68cdb31a171866873a14d5b
    https://github.com/scummvm/scummvm/commit/631238ac5539f6a1b68cdb31a171866873a14d5b
Author: Johannes Schickel (lordhoto at gmail.com)
Date: 2013-08-01T19:02:08-07:00

Commit Message:
Merge pull request #339 from onlyjob/hurd

BACKENDS: fix FTBFS on GNU Hurd by replacing MAXHOSTNAMELEN with NI_MAXHOST

Changed paths:
    backends/midi/timidity.cpp









More information about the Scummvm-git-logs mailing list