Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Nov 2001 22:33:37 +0000
From:      Tony Finch <dot@dotat.at>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        Tony Finch <dot@dotat.at>
Subject:   ports/32176: FvwmM4 requires gnu m4
Message-ID:  <E166fw1-00020h-00@hand.dotat.at>

next in thread | raw e-mail | index | archive | help

>Number:         32176
>Category:       ports
>Synopsis:       FvwmM4 requires gnu m4
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Nov 21 14:40:01 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     Tony Finch <dot@dotat.at>
>Release:        FreeBSD 4.4-STABLE-20011121 i386
>Organization:
dotat labs
>Environment:
System: FreeBSD hand.dotat.at 4.4-STABLE-20011121 FreeBSD 4.4-STABLE-20011121 #0: Wed Nov 21 20:24:20 GMT 2001 fanf@:/FreeBSD/obj/FreeBSD/releng4/sys/SHARP i386
>Description:

FvwmM4 uses various command line options when invoking m4 that are
not supported by FreeBSD's m4; using gnu m4 fixes the problem.

>How-To-Repeat:
>Fix:

in addition to adding a dependency on gm4, the following patch is needed:

--- modules/FvwmM4/FvwmM4.c.orig	Wed Nov 21 22:32:08 2001
+++ modules/FvwmM4/FvwmM4.c	Wed Nov 21 22:32:20 2001
@@ -71,7 +71,7 @@
 int  m4_prefix_defines;		/* Add "m4_" to the names of the defines */
 char m4_options[BUFSIZ];        /* Command line options to m4 */
 char m4_outfile[BUFSIZ] = "";   /* The output filename for m4 */
-char *m4_prog = "m4";           /* Name of the m4 program */
+char *m4_prog = "gm4";          /* Name of the m4 program */
 int  m4_default_quotes;         /* Use default m4 quotes */
 char *m4_startquote = "`";         /* Left quote characters for m4 */
 char *m4_endquote = "'";           /* Right quote characters for m4 */
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E166fw1-00020h-00>