mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
databases: Install dtterm as an unprivileged program when PTS driver and
libutempter are available.
This commit is contained in:
parent
5854cd8543
commit
d60bbdc251
2 changed files with 17 additions and 0 deletions
|
@ -1747,13 +1747,22 @@ programs/dtudcfonted/libfal/fonts.list
|
|||
{ default
|
||||
install_target = /usr/dt/config/C/fonts.list
|
||||
}
|
||||
#if defined(HAS_PTS_DRIVER) && defined(HAS_UTEMPTER_LIBRARY)
|
||||
XCOMM
|
||||
programs/dtterm/dtterm
|
||||
{ default
|
||||
install_target = /usr/dt/bin/dtterm
|
||||
mode = 0555
|
||||
owner = root
|
||||
}
|
||||
#else
|
||||
programs/dtterm/dtterm
|
||||
{ default
|
||||
install_target = /usr/dt/bin/dtterm
|
||||
mode = 04555
|
||||
owner = root
|
||||
}
|
||||
#endif
|
||||
XCOMM
|
||||
programs/dtterm/dtterm.ti
|
||||
{ default
|
||||
|
|
|
@ -38,6 +38,14 @@ UDB_CPP_UNDEF_LIST = -UhpV4 -Uhpux -Uaix -Usun -Uunix -Ulinux -Uopenbsd -Ufreebs
|
|||
UDB_CPP_DEF_LIST = -DHAS_PAM_LIBRARY
|
||||
#endif
|
||||
|
||||
#if defined(HasPtsDriver) && HasPtsDriver
|
||||
UDB_CPP_DEF_LIST += -DHAS_PTS_DRIVER
|
||||
#endif
|
||||
|
||||
#if defined(HasUtempterLibrary) && HasUtempterLibrary
|
||||
UDB_CPP_DEF_LIST += -DHAS_UTEMPTER_LIBRARY
|
||||
#endif
|
||||
|
||||
#if defined UTF8_NLS_SUPPORT
|
||||
# define UTF8_NLS_SUPPORT_OPT -DUTF8_NLS_SUPPORT
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue