svn commit: r542173 - in head/cad/alliance: . files
Jung-uk Kim
jkim at FreeBSD.org
Tue Jul 14 01:39:43 UTC 2020
Author: jkim
Date: Tue Jul 14 01:39:42 2020
New Revision: 542173
URL: https://svnweb.freebsd.org/changeset/ports/542173
Log:
Honor $YACC and fix build with recent byacc.
PR: 247522
Added:
head/cad/alliance/files/patch-exp_src_Makefile.am (contents, props changed)
head/cad/alliance/files/patch-fvh_src_fbl__byacc.h (contents, props changed)
Modified:
head/cad/alliance/Makefile
Modified: head/cad/alliance/Makefile
==============================================================================
--- head/cad/alliance/Makefile Tue Jul 14 01:25:24 2020 (r542172)
+++ head/cad/alliance/Makefile Tue Jul 14 01:39:42 2020 (r542173)
@@ -29,7 +29,7 @@ USE_TEX= dvipsk:build latex:build
USE_XORG= ice sm x11 xext xt
HAS_CONFIGURE= yes
-CONFIGURE_ENV+= ALLIANCE_TOP=${ALLIANCE_TOP}
+CONFIGURE_ENV+= ALLIANCE_TOP=${ALLIANCE_TOP} YACC=${YACC}
CONFIGURE_ARGS+=--mandir=${MANPREFIX}/man \
--prefix=${ALLIANCE_TOP}
Added: head/cad/alliance/files/patch-exp_src_Makefile.am
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/cad/alliance/files/patch-exp_src_Makefile.am Tue Jul 14 01:39:42 2020 (r542173)
@@ -0,0 +1,11 @@
+--- exp/src/Makefile.am.orig 2014-08-02 23:38:00 UTC
++++ exp/src/Makefile.am
+@@ -2,7 +2,7 @@
+
+ bin_PROGRAMS = exp
+
+-YACC = @YACC@ -d -v --debug
++YACC = @YACC@ -d -v -t
+ CFLAGS = @CFLAGS@ @ALLIANCE_CFLAGS@
+ exp_LDADD =
+
Added: head/cad/alliance/files/patch-fvh_src_fbl__byacc.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/cad/alliance/files/patch-fvh_src_fbl__byacc.h Tue Jul 14 01:39:42 2020 (r542173)
@@ -0,0 +1,9 @@
+--- fvh/src/fbl_byacc.h.orig 2014-08-02 23:38:00 UTC
++++ fvh/src/fbl_byacc.h
+@@ -119,5 +119,5 @@ extern void fbl_select();
+ extern char * fbl_stostr __P((char *str));
+
+ extern void fbl_y_error __P((char *str));
+- extern long fbl_y_lex __P(());
++ extern int fbl_y_lex __P(());
+
More information about the svn-ports-head
mailing list