diff options
author | Ed Schouten <ed@FreeBSD.org> | 2009-03-02 12:36:05 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2009-03-02 12:36:05 +0000 |
commit | fe8379f9e9fbbd6e227ec5270064c988031a497e (patch) | |
tree | 43b94162df8326b88a612588864c876ee8e89f6d /sysutils/LPRng | |
parent | 737682e54c58dc63de2a32b88f0370436daeea20 (diff) | |
download | ports-fe8379f9e9fbbd6e227ec5270064c988031a497e.tar.gz ports-fe8379f9e9fbbd6e227ec5270064c988031a497e.zip |
Notes
Diffstat (limited to 'sysutils/LPRng')
-rw-r--r-- | sysutils/LPRng/Makefile | 4 | ||||
-rw-r--r-- | sysutils/LPRng/files/patch-stty | 24 |
2 files changed, 24 insertions, 4 deletions
diff --git a/sysutils/LPRng/Makefile b/sysutils/LPRng/Makefile index dd03023b8786..ffbcea4f137f 100644 --- a/sysutils/LPRng/Makefile +++ b/sysutils/LPRng/Makefile @@ -67,10 +67,6 @@ MAN8= lpc.8 checkpc.8 lpd.8 .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 800045 -BROKEN= does not build -.endif - .if !defined(WITHOUT_NLS) USE_GETTEXT= yes PLIST_SUB+= NLS="" diff --git a/sysutils/LPRng/files/patch-stty b/sysutils/LPRng/files/patch-stty new file mode 100644 index 000000000000..ecb901c4d767 --- /dev/null +++ b/sysutils/LPRng/files/patch-stty @@ -0,0 +1,24 @@ +$FreeBSD$ + +--- src/common/stty.c ++++ src/common/stty.c +@@ -761,11 +761,19 @@ + {"CR3", CR3, CRDLY}, + #endif + #ifdef TABDLY ++#ifdef TAB0 + {"TAB0", TAB0, TABDLY}, ++#endif ++#ifdef TAB1 + {"TAB1", TAB1, TABDLY}, ++#endif ++#ifdef TAB2 + {"TAB2", TAB2, TABDLY}, ++#endif ++#ifdef TAB3 + {"TAB3", TAB3, TABDLY}, + #endif ++#endif + #ifdef BSDLY + {"BS0", BS0, BSDLY}, + {"BS1", BS1, BSDLY}, |