diff options
| author | Tom Yu <tlyu@mit.edu> | 2004-02-13 03:19:30 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 2004-02-13 03:19:30 +0000 |
| commit | b65814e4bc39a01bab8f93e2b995cdc3ebef8e1f (patch) | |
| tree | 32462be4232cb29d3ce1fb845a1bd96cc8747f8e /src/config | |
| parent | 3772bd7c1af805fd40d5996681a1eea1c0ac8f0a (diff) | |
| download | krb5-b65814e4bc39a01bab8f93e2b995cdc3ebef8e1f.tar.gz krb5-b65814e4bc39a01bab8f93e2b995cdc3ebef8e1f.tar.xz krb5-b65814e4bc39a01bab8f93e2b995cdc3ebef8e1f.zip | |
priocntl workaround for Solaris 9 pty-close bug
Implement gross hack to use priocntl to work around the Solaris 9
pty-close bug. Run expect at a higher class "FX" priority than
spawned processes, which run at a lower class "FX" priority. "make
check" needs to start from a process which has FX priority >= 30 and
FX priority limit >= 30. Thanks to Bill Sommerfeld for the hints.
ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16069 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/ChangeLog | 2 | ||||
| -rw-r--r-- | src/config/shlib.conf | 12 |
2 files changed, 2 insertions, 12 deletions
diff --git a/src/config/ChangeLog b/src/config/ChangeLog index 16c1fa9cb..778d89e3d 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,5 +1,7 @@ 2004-02-12 Tom Yu <tlyu@mit.edu> + * shlib.conf (*-*-solaris-*): Remove exitsleep. + * pre.in (FAKEDEST, FAKEPREFIX, FAKELIBDIR): Support variables for the _RLD_ROOT hack. diff --git a/src/config/shlib.conf b/src/config/shlib.conf index 8442ab834..ed41bd8fc 100644 --- a/src/config/shlib.conf +++ b/src/config/shlib.conf @@ -255,18 +255,6 @@ mips-*-netbsd*) CC_LINK_SHARED='$(PURE) $(CC) $(PROG_LIBPATH) $(RPATH_FLAG)$(PROG_RPATH) $(CFLAGS) $(LDFLAGS)' CC_LINK_STATIC='$(PURE) $(CC) $(PROG_LIBPATH) $(CFLAGS) $(LDFLAGS)' RUN_ENV='LD_LIBRARY_PATH=`echo $(PROG_LIBPATH) | sed -e "s/-L//g" -e "s/ /:/g"`; export LD_LIBRARY_PATH;' - case $krb5_cv_host in - *-*-solaris2.9*) - case $krb5_cv_prog_cc in - # XXX need better test for 64-bit compilation - *xarch=v9*) - RUN_ENV="$RUN_ENV"' LD_PRELOAD_64=$(BUILDTOP)/util/exitsleep; export LD_PRELOAD_64;' - ;; - *) - RUN_ENV="$RUN_ENV"' LD_PRELOAD_32=$(BUILDTOP)/util/exitsleep; export LD_PRELOAD_32;' - ;; - esac - esac ;; *-*-sunos*) |
