mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Update this area for Texinfo-3.12.
Submitted by: lkoeller@cc.fh-lippe.de
This commit is contained in:
parent
1631f00d83
commit
8bb599c434
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42665
8 changed files with 62 additions and 32 deletions
|
@ -2,6 +2,6 @@
|
|||
# $Id$
|
||||
#
|
||||
|
||||
SUBDIR= libtxi makeinfo info install-info doc
|
||||
SUBDIR= libtxi libintl makeinfo info install-info doc
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
@ -4,8 +4,10 @@ TXIDIR= ${.CURDIR}/../../../../contrib/texinfo
|
|||
|
||||
.if exists(${.OBJDIR}/../libtxi)
|
||||
LIBTXI= ${.OBJDIR}/../libtxi/libtxi.a
|
||||
LIBINTL = ${.OBJDIR}/../libintl/libintl.a
|
||||
.else
|
||||
LIBTXI= ${.CURDIR}/../libtxi/libtxi.a
|
||||
LIBINTL = ${.CURDIR}/../libintl/libintl.a
|
||||
.endif
|
||||
|
||||
.include "../../Makefile.inc"
|
||||
|
|
|
@ -1,7 +1,14 @@
|
|||
# $Id$
|
||||
|
||||
INFO= texinfo info info-stnd makeinfo
|
||||
INFO= info-stnd info texinfo
|
||||
|
||||
MAKEINFO= ../makeinfo/makeinfo
|
||||
|
||||
CLEANFILES+= ${.OBJDIR}/texinfo.texi
|
||||
|
||||
texinfo.texi: texinfo.txi
|
||||
@ln -sf ${.OODATE} ${.TARGET}
|
||||
|
||||
.include <bsd.info.mk>
|
||||
|
||||
.PATH: ${TXIDIR} ${TXIDIR}/info ${TXIDIR}/makeinfo
|
||||
.PATH: ${TXIDIR}/doc
|
||||
|
|
|
@ -1,21 +1,23 @@
|
|||
# $Id$
|
||||
|
||||
PROG= info
|
||||
NOMAN= yes
|
||||
|
||||
SRCS= dir.c display.c doc.c echo_area.c filesys.c info-utils.c info.c infodoc.c infomap.c
|
||||
SRCS+= m-x.c nodes.c search.c session.c signals.c terminal.c tilde.c window.c indices.c
|
||||
SRCS+= xmalloc.c nodemenu.c footnotes.c dribble.c variables.c gc.c man.c clib.c
|
||||
SRCS= dir.c display.c display.h doc.c doc.h dribble.c dribble.h
|
||||
SRCS+= echo-area.c echo-area.h filesys.c filesys.h footnotes.c
|
||||
SRCS+= footnotes.h funs.h gc.c gc.h indices.c indices.h
|
||||
SRCS+= info-utils.c info-utils.h info.c info.h infodoc.c
|
||||
SRCS+= infomap.c infomap.h m-x.c man.c man.h nodemenu.c nodes.c
|
||||
SRCS+= nodes.h search.c search.h session.c session.h signals.c
|
||||
SRCS+= signals.h termdep.h terminal.c terminal.h tilde.c tilde.h
|
||||
SRCS+= variables.c variables.h window.c window.h
|
||||
|
||||
CFLAGS+= -DHANDLE_MAN_PAGES -DNAMED_FUNCTIONS=1
|
||||
CFLAGS+= -DDEFAULT_INFOPATH=\"${INFODIR}:/usr/local/info:.\"
|
||||
CFLAGS+= -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DHAVE_TERMIOS_H=1 -DHAVE_STRINGS_H=1 -DHAVE_STRING_H=1
|
||||
CFLAGS+= -DHAVE_VARARGS_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_SYS_FCNTL_H=1 -DHAVE_SYS_FILE_H=1
|
||||
CFLAGS+= -DHAVE_ALLOCA=1 -DHAVE_SETVBUF=1 -DHAVE_GETCWD=1 -DHAVE_MEMSET=1 -DHAVE_BZERO=1
|
||||
CFLAGS+= -DHAVE_STRCHR=1 -DHAVE_STRCASECMP=1 -DHAVE_VFPRINTF=1 -DHAVE_VSPRINTF=1 -DHAVE_STRERROR=1
|
||||
CFLAGS+= -DHAVE_SIGPROCMASK=1 -DHAVE_SIGSETMASK=1 -I${TXIDIR}/libtxi
|
||||
CFLAGS+= -DINFODIR=\"${INFODIR}:/usr/local/info:.\"
|
||||
CFLAGS+= -DLOCALEDIR=\"/usr/share/locale\" -DHAVE_CONFIG_H
|
||||
CFLAGS+= -I${TXIDIR} -I${TXIDIR}/lib -I../libintl
|
||||
|
||||
DPADD= ${LIBTERMCAP} ${LIBTXI}
|
||||
LDADD= -ltermcap ${LIBTXI}
|
||||
DPADD= ${LIBTERMCAP} ${LIBTXI} ${LIBINTL}
|
||||
LDADD= -ltermcap ${LIBTXI} ${LIBINTL}
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
# $Id: Makefile,v 1.6 1997/04/07 16:52:45 bde Exp $
|
||||
# $Id$
|
||||
|
||||
PROG= install-info
|
||||
|
||||
CFLAGS+= -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DHAVE_TERMIOS_H=1 -DHAVE_STRINGS_H=1 -DHAVE_STRING_H=1
|
||||
CFLAGS+= -DHAVE_VARARGS_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_SYS_FCNTL_H=1 -DHAVE_SYS_FILE_H=1 -DHAVE_ALLOCA=1
|
||||
CFLAGS+= -DHAVE_SETVBUF=1 -DHAVE_GETCWD=1 -DHAVE_MEMSET=1 -DHAVE_BZERO=1 -DHAVE_STRCHR=1
|
||||
CFLAGS+= -DHAVE_STRCASECMP=1 -DHAVE_VFPRINTF=1 -DHAVE_VSPRINTF=1 -DHAVE_STRERROR=1 -DHAVE_SIGPROCMASK=1
|
||||
CFLAGS+= -DHAVE_SIGSETMASK=1 -I${TXIDIR}/libtxi
|
||||
CFLAGS+= -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\"
|
||||
CFLAGS+= -I${TXIDIR} -I${TXIDIR}/lib -I../libintl
|
||||
|
||||
DPADD= ${LIBTXI}
|
||||
LDADD= ${LIBTXI}
|
||||
DPADD= ${LIBTXI} ${LIBINTL} -lz
|
||||
LDADD= ${LIBTXI} ${LIBINTL} -lz
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
||||
|
|
24
gnu/usr.bin/texinfo/libintl/Makefile
Normal file
24
gnu/usr.bin/texinfo/libintl/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# $Id$
|
||||
|
||||
LIB= intl
|
||||
INTERNALLIB= true
|
||||
INTERNALSTATICLIB= true
|
||||
|
||||
CFLAGS+= -DHAVE_CONFIG_H
|
||||
CFLAGS+= -DLOCALEDIR=\"/usr/share/locale\"
|
||||
CFLAGS+= -DGNULOCALEDIR=\"/usr/share/locale\"
|
||||
CFLAGS+= -DLOCALE_ALIAS_PATH=\"/usr/share/locale:.\"
|
||||
CFLAGS+= -I${TXIDIR} -I${TXIDIR}/lib -I${TXIDIR}/intl -I.
|
||||
|
||||
SRCS= bindtextdom.c dcgettext.c dgettext.c gettext.c
|
||||
SRCS+= finddomain.c loadmsgcat.c localealias.c textdomain.c
|
||||
SRCS+= l10nflist.c explodename.c intl-compat.c libintl.h
|
||||
|
||||
CLEANFILES+= libintl.h
|
||||
|
||||
libintl.h: libgettext.h
|
||||
@ln -sf ${.OODATE} ${.TARGET}
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
||||
.PATH: ${TXIDIR}/intl
|
|
@ -4,8 +4,8 @@ LIB= txi
|
|||
INTERNALLIB= true
|
||||
INTERNALSTATICLIB= true
|
||||
|
||||
SRCS= getopt.c getopt1.c
|
||||
SRCS= getopt.c getopt1.c xmalloc.c xstrdup.c
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
||||
.PATH: ${TXIDIR}/libtxi
|
||||
.PATH: ${TXIDIR}/lib
|
||||
|
|
|
@ -4,14 +4,12 @@ PROG= makeinfo
|
|||
NOMAN= yes
|
||||
SRCS= makeinfo.c multi.c
|
||||
|
||||
CFLAGS+= -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DHAVE_TERMIOS_H=1 -DHAVE_STRINGS_H=1 -DHAVE_STRING_H=1
|
||||
CFLAGS+= -DHAVE_VARARGS_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_SYS_FCNTL_H=1 -DHAVE_SYS_FILE_H=1 -DHAVE_ALLOCA=1
|
||||
CFLAGS+= -DHAVE_SETVBUF=1 -DHAVE_GETCWD=1 -DHAVE_MEMSET=1 -DHAVE_BZERO=1 -DHAVE_STRCHR=1
|
||||
CFLAGS+= -DHAVE_STRCASECMP=1 -DHAVE_VFPRINTF=1 -DHAVE_VSPRINTF=1 -DHAVE_STRERROR=1 -DHAVE_SIGPROCMASK=1
|
||||
CFLAGS+= -DHAVE_SIGSETMASK=1 -I${TXIDIR}/libtxi
|
||||
CFLAGS+= -DHAVE_CONFIG_H
|
||||
CFLAGS+= -DLOCALEDIR=\"/usr/share/local\"
|
||||
CFLAGS+= -I${TXIDIR}/makeinfo -I${TXIDIR} -I${TXIDIR}/lib -I../libintl
|
||||
|
||||
DPADD= ${LIBTXI}
|
||||
LDADD= ${LIBTXI}
|
||||
DPADD= ${LIBTXI} ${LIBINTL}
|
||||
LDADD= ${LIBTXI} ${LIBINTL}
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
||||
|
|
Loading…
Reference in a new issue