xenocara/app/xterm/Makefile
matthieu 1c68deb738 workaround for a problem that appeared with xterm 243 on arm cpus.
It dumps core in VTInitialize() if charproc.c is compiled with -O2.
The problem is in the lines 5610 to 5614 of this file, which were
added by xterm 243, but I can't see an obvious problem here.
2009-05-31 16:22:34 +00:00

72 lines
2.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.13 2009/05/31 16:22:34 matthieu Exp $
.include <bsd.xconf.mk>
SUBDIR= icons resize
PROG= xterm
MAN= xterm.1tbl uxterm.1 koi8rxterm.1
BINGRP= utmp
BINMODE= 2755
CPPFLAGS+= -I${.CURDIR} -I${X11BASE}/include \
-I${X11BASE}/include/freetype2 \
-DHAVE_CONFIG_H -DCSRG_BASED \
-DFUNCPROTO=15 -DNARROWPROTO -DXFREE86_FT2 -DUTMP \
-DDEF_ALLOW_FONT=False -DDEF_ALLOW_TCAP=False \
-DDEF_ALLOW_WINDOW=False
LDADD+= -L${X11BASE}/lib -lXaw -lXpm -lXt -lSM -lICE \
-lXmu -lXft -lXrender -lX11 -lXext -lXau -lXdmcp \
-lfontconfig -lexpat -lfreetype -lutil -ltermcap -lz
SRCS= TekPrsTbl.c Tekproc.c VTPrsTbl.c button.c cachedGCs.c \
charclass.c xtermcap.c charproc.c charsets.c cursor.c \
data.c doublechr.c fontutils.c input.c main.c menu.c \
misc.c precompose.c print.c ptydata.c wcwidth.c screen.c \
scrollbar.c tabs.c util.c xstrings.c
MANDIR= ${X11BASE}/man/cat
XETC?= /etc/X11
.if ${MACHINE_ARCH} == "arm"
charproc.o: charproc.c
${CC} -g -c ${CPPFLAGS} ${.CURDIR}/charproc.c
.endif
xterm.1tbl: xterm.man
sed -e 's#__vendorversion__#"X Window System"#g' \
-e 's#__mansuffix__#1#g' \
-e 's#__miscmansuffix__#7#g' \
-e 's#__apploaddir__#${X11ETC}/app-defaults#g' \
< ${.CURDIR}/xterm.man > $@
.SUFFIXES: .man .1
.man.1:
sed -e 's#__vendorversion__#"X Window System"#g' \
-e 's#__mansuffix__#1#g' \
-e 's#__miscmansuffix__#7#g' \
-e 's#__apploaddir__#${X11ETC}/app-defaults#g' \
< $< > $@
CLEANFILES+= ${MAN}
afterinstall:
${INSTALL} ${INSTALL_COPY} -m 755 ${.CURDIR}/uxterm \
${DESTDIR}${BINDIR}
${INSTALL} ${INSTALL_COPY} -m 644 ${.CURDIR}/XTerm.ad \
${DESTDIR}${XETC}/app-defaults/XTerm
${INSTALL} ${INSTALL_COPY} -m 644 ${.CURDIR}/XTerm-col.ad \
${DESTDIR}${XETC}/app-defaults/XTerm-color
${INSTALL} ${INSTALL_COPY} -m 644 ${.CURDIR}/UXTerm.ad \
${DESTDIR}${XETC}/app-defaults/UXTerm
${INSTALL} ${INSTALL_COPY} -m 755 ${.CURDIR}/koi8rxterm \
${DESTDIR}${BINDIR}
${INSTALL} ${INSTALL_COPY} -m 644 ${.CURDIR}/KOI8RXTerm.ad \
${DESTDIR}${XETC}/app-defaults/KOI8RXTerm
obj: _xenocara_obj
.include <bsd.prog.mk>
.include <bsd.xorg.mk>