openbsd-ports/print/mpage/patches/patch-mpage_h
jasper 9ba3b19ab3 - update mpage to 2.5.6
- update maintainer address
- regen plist

from ian mcwilliam (MAINTAINER)
2010-05-26 13:53:16 +00:00

33 lines
917 B
Plaintext

$OpenBSD: patch-mpage_h,v 1.2 2010/05/26 13:53:16 jasper Exp $
--- mpage.h.orig Mon Jan 14 23:52:30 2008
+++ mpage.h Fri May 21 12:02:36 2010
@@ -204,6 +204,13 @@ struct pagebox {
int thick;/* line thickness */
};
+
+/*
+ * some basic PS parameters
+ */
+extern int ps_width; /* number of points in the X direction (8.5 inches) */
+extern int ps_height; /* number of points in the Y direction (11 inches) */
+extern char * media; /* name of output page media */
/*
* Structure to describe a physical piece of paper, e.g. A4 or Letter
@@ -213,14 +220,6 @@ struct page_desc {
int width;
int height;
};
-
-/*
- * some basic PS parameters
- */
-extern int ps_width; /* number of points in the X direction (8.5 inches) */
-extern int ps_height; /* number of points in the Y direction (11 inches) */
-extern char * media; /* name of output page media */
-
extern struct page_desc paper[];