1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Fix with newer gcc by converting multiline string literals to string

concatenation.  Removes extra whitespace in the string.
This commit is contained in:
Eric Anholt 2003-05-12 22:28:35 +00:00
parent d6ea489c93
commit b2d863c00a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=80860
2 changed files with 16 additions and 1 deletions

View File

@ -8,7 +8,7 @@
PORTNAME= psmark
PORTVERSION= 2.1
PORTREVISION= 0
PORTREVISION= 1
CATEGORIES= print
MASTER_SITES= http://www.antitachyon.com/download/
DISTNAME= ${PORTNAME}-v${PORTVERSION}

View File

@ -0,0 +1,15 @@
--- psmark.c.orig Mon May 12 15:31:28 2003
+++ psmark.c Mon May 12 15:31:35 2003
@@ -97,9 +97,9 @@
progname);
fprintf(stderr,"example:\n %s -i test.ps -o output.ps -b 0.4 -s 15 \"vertical label\""
"\n\n",progname);
- fprintf(stderr,"Notes: The offsets are measured from the bottom left hand corner, but
- they are not in sync with the page corner: some fiddling is required
- to get text to appear right in the corner.\n"
+ fprintf(stderr,"Notes: The offsets are measured from the bottom left hand corner, but\n"
+ "they are not in sync with the page corner: some fiddling is required\n"
+ "to get text to appear right in the corner.\n"
);
exit(error ? EXIT_FAILURE : EXIT_SUCCESS);