diff --git a/src/lpt.c b/src/lpt.c index 761554b82..f67eba3cc 100644 --- a/src/lpt.c +++ b/src/lpt.c @@ -30,6 +30,7 @@ static const struct {"Stereo LPT DAC", "lpt_dac_stereo", &lpt_dac_stereo_device}, {"Generic Text Printer", "text_prt", &lpt_prt_text_device}, {"Generic ESC/P Dot-Matrix", "dot_matrix", &lpt_prt_escp_device}, + {"Generic PostScript Printer", "postscript", &lpt_prt_ps_device}, {"", "", NULL} }; diff --git a/src/printer/prt_devs.h b/src/printer/prt_devs.h index e43ec67cc..7ef25e5cd 100644 --- a/src/printer/prt_devs.h +++ b/src/printer/prt_devs.h @@ -1,2 +1,3 @@ extern const lpt_device_t lpt_prt_text_device; -extern const lpt_device_t lpt_prt_escp_device; \ No newline at end of file +extern const lpt_device_t lpt_prt_escp_device; +extern const lpt_device_t lpt_prt_ps_device; \ No newline at end of file diff --git a/src/win/Makefile.mingw b/src/win/Makefile.mingw index 8e6f39e38..d160e2a38 100644 --- a/src/win/Makefile.mingw +++ b/src/win/Makefile.mingw @@ -610,7 +610,7 @@ NETOBJ := network.o \ net_wd8003.o PRINTOBJ := png.o prt_cpmap.o \ - prt_escp.o prt_text.o + prt_escp.o prt_text.o prt_ps.o SNDOBJ := sound.o \ openal.o \ diff --git a/src/win/Makefile_ndr.mingw b/src/win/Makefile_ndr.mingw index 04a328752..3fb154281 100644 --- a/src/win/Makefile_ndr.mingw +++ b/src/win/Makefile_ndr.mingw @@ -616,7 +616,7 @@ NETOBJ := network.o \ net_wd8003.o PRINTOBJ := png.o prt_cpmap.o \ - prt_escp.o prt_text.o + prt_escp.o prt_text.o prt_ps.o SNDOBJ := sound.o \ openal.o \