Files
cdesktop/cde/lib/DtTerm/Makefile.am
Jon Trulson 2730367844 utempter: complete the implementation
Liang Chang added utempter support to the dtterm widget in
pre-autoconf CDE.  While the code itself was merged, it was still not
"turned on" for autoconf builds.

This commit completes the implementation allowing dtterm on Linux and
the BSDs to be installed without having to be setuid root -- as long
as the libutempter headers and libraries are installed.
2021-07-04 16:45:57 -06:00

29 lines
485 B
Makefile

MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = util TermPrim Term TermView
lib_LTLIBRARIES = libDtTerm.la
libDtTerm_la_SOURCES =
libDtTerm_la_LIBADD = Term/libTerm.la TermPrim/libTermPrim.la \
TermView/libTermView.la
if OPENBSD
libDtTerm_la_LIBADD += -lutil
endif
if FREEBSD
libDtTerm_la_LIBADD += -lutil
endif
if SOLARIS
libDtTerm_la_LIBADD += -ldl -lgen
endif
if HAS_UTEMPTER_LIBRARY
libDtTerm_la_LIBADD += -lutempter
endif
libDtTerm_la_LDFLAGS = -version-info 2:1:0