Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Aug 2020 10:07:11 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r546063 - head/audio/festival/files
Message-ID:  <202008241007.07OA7Bi6034810@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zeising
Date: Mon Aug 24 10:07:11 2020
New Revision: 546063
URL: https://svnweb.freebsd.org/changeset/ports/546063

Log:
  audio/festival: Fix build with -fno-common
  
  Fix the build of audio/festival when built with -fno-common, which is the
  default with llvm 11.
  
  MFH:		2020Q3 (implicit, -fno-common fix, ok by joenum)

Added:
  head/audio/festival/files/patch-speech__tools_siod_editline.c   (contents, props changed)

Added: head/audio/festival/files/patch-speech__tools_siod_editline.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/festival/files/patch-speech__tools_siod_editline.c	Mon Aug 24 10:07:11 2020	(r546063)
@@ -0,0 +1,11 @@
+--- speech_tools/siod/editline.c.orig	2020-08-24 09:52:13 UTC
++++ speech_tools/siod/editline.c
+@@ -73,7 +73,7 @@
+ /* modified by awb to allow specifcation of history size at run time  */
+ /* (though only once)                                                 */
+ int editline_histsize=256;
+-char *editline_history_file;
++extern char *editline_history_file;
+ /* If this is defined it'll be called for completion first, before the */
+ /* internal file name completion will be                               */
+ EL_USER_COMPLETION_FUNCTION_TYPE*el_user_completion_function = NULL;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008241007.07OA7Bi6034810>