FreeBSD Bugzilla – Attachment 16886 Details for
Bug 30812
[patch] giant termcap database update
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 2.21 KB, created by
clefevre
on 2001-09-25 12:20:01 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
clefevre
Created:
2001-09-25 12:20:01 UTC
Size:
2.21 KB
patch
obsolete
>Index: make.conf >=================================================================== >RCS file: /home/ncvs/src/etc/defaults/Attic/make.conf,v >retrieving revision 1.97.2.58 >diff -u -r1.97.2.58 make.conf >--- make.conf 2001/08/23 20:08:51 1.97.2.58 >+++ make.conf 2001/09/25 10:56:27 >@@ -99,6 +99,7 @@ > #NO_OPENSSL= true # do not build OpenSSL (implies NO_OPENSSH) > #NO_SENDMAIL= true # do not build sendmail and related programs > #NO_SHAREDOCS= true # do not build the 4.4BSD legacy docs > #NO_TCSH= true # do not build and install /bin/csh (which is tcsh) >+#NO_TERMTYPES= true # do not use the new tuxedo termcap database > #NO_X= true # do not compile in XWindows support (e.g. doscmd) > #NOCRYPT= true # do not build any crypto code >Index: Makefile >=================================================================== >RCS file: /home/ncvs/src/share/termcap/Makefile,v >retrieving revision 1.12.2.3 >diff -u -r1.12.2.3 Makefile >--- Makefile 2001/09/17 15:40:09 1.12.2.3 >+++ Makefile 2001/09/25 10:47:53 >@@ -1,22 +1,40 @@ > # @(#)Makefile 8.1 (Berkeley) 6/8/93 > # $FreeBSD: src/share/termcap/Makefile,v 1.12.2.3 2001/09/17 15:40:09 ru Exp $ > >+MAN= termcap.5 >+ >+TERMCAP= termcap >+.if defined(NO_TERMTYPES) >+TERMCAPSRC= termcap.src >+.else >+TERMCAPSRC= termtypes.tc >+.endif >+TERMCAPDB= termcap.db >+ >+FILES= ${TERMCAP} ${TERMCAPDB} >+CLEANFILES+= ${FILES} >+ >+CAP_MKDB?= cap_mkdb >+ > # reorder gives an editor command for most common terminals > # (in reverse order from n'th to 1'st most commonly used) > # to move them to the front of termcap >-# >-MAN= termcap.5 >- >-CLEANFILES+= termcap termcap.db >-FILES= termcap termcap.db >+.if defined(NO_TERMTYPES) >+REORDER= ${.CURDIR}/reorder >+.else >+REORDER= ${.CURDIR}/reorder.tc >+.endif > >-all: termcap termcap.db >+all: ${FILES} > >-termcap: reorder termcap.src >- TERM=dumb ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder >+${TERMCAP}: ${REORDER} ${TERMCAPSRC} >+ @rm -f ${.TARGET} >+ TERM=dumb ex - ${.CURDIR}/${TERMCAPSRC} < ${REORDER} >+# IMHO, the new termtypes.tc file don't need to be reordered... >+# ln -fs ${.CURDIR}/${TERMCAPSRC} ${.TARGET} > >-termcap.db: termcap >- cap_mkdb termcap >+${TERMCAPDB}: ${TERMCAP} >+ ${CAP_MKDB} ${TERMCAP} 2> /dev/null > > beforeinstall: > ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${SHAREMODE} \
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 30812
: 16886 |
16887