diff options
author | Christian Weisgerber <naddy@FreeBSD.org> | 2003-06-08 13:45:15 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@FreeBSD.org> | 2003-06-08 13:45:15 +0000 |
commit | 365edaa5fa775a4288ba9c902f3e36b965c64bb3 (patch) | |
tree | 02f1d0f8a181590f52c49f7705d65125d983f329 /print/ghostscript8/files/patch-src:gdevdmpr.c | |
parent | Fix MASTER_SITES (diff) |
Downgrade to 8.0 and fix accidental screwups.
Submitted by: Ports Fury
Diffstat (limited to 'print/ghostscript8/files/patch-src:gdevdmpr.c')
-rw-r--r-- | print/ghostscript8/files/patch-src:gdevdmpr.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/print/ghostscript8/files/patch-src:gdevdmpr.c b/print/ghostscript8/files/patch-src:gdevdmpr.c new file mode 100644 index 000000000000..47e980154ccd --- /dev/null +++ b/print/ghostscript8/files/patch-src:gdevdmpr.c @@ -0,0 +1,38 @@ +--- src/gdevdmpr.c.orig Tue May 13 20:43:37 1997 ++++ src/gdevdmpr.c Sun Nov 10 21:19:41 2002 +@@ -41,7 +41,7 @@ + /* include library header. */ + #include "dviprlib.h" + +-extern FILE *lib_fopen(P1(const char *)); ++extern FILE *lib_fopen(const char *); + + #define LOCAL_DEBUG 0 + +@@ -87,12 +87,12 @@ + private dev_proc_close_device(gdev_dmprt_close); + + /* declarations of sub functions to get printer properties. */ +-private void gdev_dmprt_init_printer_props(P1(gx_device_dmprt *)); +-private int gdev_dmprt_get_printer_props(P2(gx_device_dmprt *,char *)); +-private int gdev_dmprt_check_code_props(P2(byte * ,int )); +-private FILE *gdev_dmprt_dviprt_lib_fopen(P2(const char *,char *)); ++private void gdev_dmprt_init_printer_props(gx_device_dmprt *); ++private int gdev_dmprt_get_printer_props(gx_device_dmprt *,char *); ++private int gdev_dmprt_check_code_props(byte * ,int ); ++private FILE *gdev_dmprt_dviprt_lib_fopen(const char *,char *); + +-private int gdev_dmprt_error_no_dviprt_to_gs(P1(int )); ++private int gdev_dmprt_error_no_dviprt_to_gs(int ); + + /* The device descriptor */ + gx_device_procs prn_dmprt_procs = { +@@ -846,7 +846,7 @@ + if (env) { + strcpy(fname,env); + strcat(fname, +- gp_file_name_concat_string(env,strlen(env),fname,strlen(fnamebase))); ++ gp_file_name_concat_string(env,strlen(env))); + strcat(fname,fnamebase); + fp = fopen(fname,gp_fmode_rb); + } |