Displaying 20 results from an estimated 43 matches for "sunos4".
Did you mean:
sunos
2003 Jan 14
1
2.5.6pre1 bombs on Sunos4 in popthelp.c on use of sprintf
2.5.6pre1 bombs on Sunos4 gcc with these errors
popt/popthelp.c: In function `singleOptionDefaultValue':
popt/popthelp.c:137: invalid operands to binary +
popt/popthelp.c:141: invalid operands to binary +
popt/popthelp.c:145: invalid operands to binary +
popt/popthelp.c:149: invalid operands to binar...
2001 May 18
0
patch to change sprintf to snprintf in inet_ntop.c for SunOS4
I found that inet_ntop.c was depending on the return value of sprintf to
return an int, but on SunOS4 it returns a char *. Snprintf is preferred
anyway, so here's a patch to change the calls to use snprintf. Applies
cleanly to the current CVS, and it was the only patch I need to apply to
get 2.9p1 to build on SunOS4.1.4.
On the other hand, I can't see any where inet_ntop is called, and t...
2002 Jan 18
1
[Bug 74] New: Use of sig_atomic_t breaks SunOS4 compile
http://bugzilla.mindrot.org/show_bug.cgi?id=74
Summary: Use of sig_atomic_t breaks SunOS4 compile
Product: Portable OpenSSH
Version: -current
Platform: Other
OS/Version: SunOS
Status: NEW
Severity: normal
Priority: P2
Component: ssh
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: dwd...
2002 Feb 26
0
[Bug 74] Use of sig_atomic_t breaks SunOS4 compile
http://bugzilla.mindrot.org/show_bug.cgi?id=74
tim at multitalents.net changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|openssh-unix-dev at mindrot.org|tim at multitalents.net
------- Additional Comments From tim at multitalents.net 2002-02-26 17:03 -------
I've addressed this
2000 Aug 01
2
[2.1.1p4] utmp patch for SunOS 4.1.x
Follow-on to Charles Levert's <charles at comm.polymtl.ca> work on
utmp_write_direct.
Fixed:
-- At logout, the utmp entry is cleared. Tested on SunOS 4.1.4.
The code I added to loginrec.c is restricted to SUNOS4 pending
QA testing on other platforms.
This patch incorporates the work done by Charles Levert on
7/25/2000 00:43:22. (Do any of us sleep at night?)
Remaining:
-- Test on NeXT and other operating systems that need utmp_write_direct
(those without entutent, getutent, get...
2000 Jul 26
2
[2.1.1p4] utmp related patches plus unresolved bugs description
Fixed:
-- On systems such as SunOS4 where the system include files
are no help in locating the utmp file (et al.), configure
can define their location in CONF_*, but defines.h never used
these.
-- Might as well put in the usual location for SunOS4.
-- In loginrec.c (utmp_write_direct), writing to the utmp file
was not done co...
2002 Mar 26
1
Block of unwanted zeros in a dest file
I'm syncing from a linux box (NAS disk) to a sun (NAS disk).
I just found a file on the destination sun with zeros from bytes 8192 to
32767. (the source file had lots of 'good' random bytes). The rest of
the file compares properly. Repeatedly running rsync to send the file
didn't fix it. I ran a -c transfer (checksum) and it fixed the file.
I'm using 2.5.3 on both sides with
2006 Jun 29
1
SunOS 4.1.4 "configure: WARNING" for sys/audit.h and sys/dir.h
...sys/dir.h needs sys/types.h
PARTIAL FIX:
Most of the machinery for the sys/types.h dependency is already present.
One possibility is to add the line "AC_DEFINE(HAVE_SYS_TYPES_H)" to
"configure.ac" as follows for openssh-SNAP-20060626/configure.ac:
429 *-*-sunos4*)
430 CPPFLAGS="$CPPFLAGS -DSUNOS4"
431 AC_CHECK_FUNCS(getpwanam)
432 AC_DEFINE(PAM_SUN_CODEBASE)
+ add this + AC_DEFINE(HAVE_SYS_TYPES_H)
433 conf_utmp_location=/etc/utmp
434 conf_wtmp_location=/var/adm/wtmp
435 conf...
2000 May 12
0
SunOS 4.x port
This is based on openssh-2.0.0beta1. There are a few rough spots:
1) SunOS doesn't have ut_type in struct utmp so I just whacked
in the old login() from openssh-1.2.3.
2) There is a SUNOS4 section added to defines.h -- this could probably
be a bit cleaner.
3) sigaction on SunOS is implemented via #defines to sigvec, thus there
is no SA_RESTART (this is the default behavior).
This also supports SunOS 4.x shadow passwords (passwd adjunct).
- todd
--- configure.in.DIST Fri...
1998 Sep 10
2
R-beta: trouble compiling 0.62.3 on SunOS 4.1.4: lgamma conflicts
I've recently tried to get 0.62.3 up on our Suns (4.1.4, using gcc; I'm
also having trouble with a Solaris 2.6 compile but I haven't given up hope
on that one yet) -- the last compile I did was 0.61.1, which worked
smoothly.
Running
./configure --prefix=/usr/local/apps/R/R-0.62.3 [--with-g77]
(tried both with and without g77, eventually get to the same place),
I get a conflict
1999 Feb 05
0
Installing R programs (PROBLEMS !!!!)
...following lines to your src/include/Platform.h
#ifndef NULL
#define NULL 0
#endif
#ifndef RAND_MAX
#define RAND_MAX 32767
#endif
(or just to the beginning of src/nmath/sunif.c).
-----------
Kurt, could we add this bug-workaround to configure.in and Platform.in
such that something like
#ifdef SunOS4
/*-- define missing ANSI C --*/
#define NULL 0
#define RAND_MAX 32767
#endif
---
Un(?)fortunately, I haven't had access to SunOS4 machines for more than a
year now.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwie...
1999 Feb 05
0
[Fwd] Problems installing R on SunOS 4.1.4
...following lines to your src/include/Platform.h
#ifndef NULL
#define NULL 0
#endif
#ifndef RAND_MAX
#define RAND_MAX 32767
#endif
(or just to the beginning of src/nmath/sunif.c).
-----------
Kurt, could we add this bug-workaround to configure.in and Platform.in
such that something like
#ifdef SunOS4
/*-- define missing ANSI C --*/
#define NULL 0
#define RAND_MAX 32767
#endif
---
Un(?)fortunately, I haven't had access to SunOS4 machines for more than a
year now.
Martin Maechler <maechler@stat.math.ethz.ch> http://stat.ethz.ch/~maechler/
Seminar fuer Statistik, ETH-Zentrum SOL G1; So...
1997 Apr 24
1
R-beta: multiple binary types
...hines
running various flavors of UNIX can access the same directories.
The modified structure adds the directories
$RHOME/bin/$OSTYPE/
$RHOME/lib/$OSTYPE/
to hold the machine specific binaries.
For instance, here the $RHOME directory contains two subdirectories,
$RHOME/bin/solaris/
$RHOME/bin/sunos4/
which each hold the appropriate R.binary file.
These two modified functions assume that the environment variable $OSTYPE
is appropriately set, as is done automatically by the shell tcsh. If it
is not set, the directory names collapse to the original values,
$RHOME/bin/ and $RHOME/lib/
To...
1997 Apr 24
1
R-beta: multiple binary types
...hines
running various flavors of UNIX can access the same directories.
The modified structure adds the directories
$RHOME/bin/$OSTYPE/
$RHOME/lib/$OSTYPE/
to hold the machine specific binaries.
For instance, here the $RHOME directory contains two subdirectories,
$RHOME/bin/solaris/
$RHOME/bin/sunos4/
which each hold the appropriate R.binary file.
These two modified functions assume that the environment variable $OSTYPE
is appropriately set, as is done automatically by the shell tcsh. If it
is not set, the directory names collapse to the original values,
$RHOME/bin/ and $RHOME/lib/
To...
2000 Aug 23
14
Test snapshot
...;s fixes and enhancements from
the openssh-unix-dev mailing list and from the OpenBSD developers.
In particular:
- ssh-agent and ssh-add now handle DSA keys. NB. this does not interop
with ssh.com's ssh-agent. (Markus Friedl)
- Fix crashes when sshd is run out of inetd
- More fixes for SunOS4 and NeXT (Nate Itkin and Charles Levert)
- Add Solaris package support in contrib/solaris/ (Rip Loomis)
- Random Early Drop connection rate limiting for sshd (Markus Friedl)
- Fix duplicate lastlog logging (Markus & me)
- Add -u option to sshd to make wtmp logging more like login's (Mar...
2002 Feb 19
2
rsync-2.5.3pre1 preview release -- please try it
...xed problem that in many cases caused the error message
unexpected read size of 0 in map_ptr
and resulted in the wrong data being copied.
* Fixed compilation errors on some systems caused by the use of
"unsigned int64" in rsync.h.
* Fixed problem on systems such as Sunos4 that do not support realloc
on a NULL pointer; error was "out of memory in flist_expand".
* Fix for rsync server processes hanging around after the client
unexpectedly disconnects. (Colin Walters) (Debian bug #128632)
* Cope with BSD systems on which mkdir() will no...
2002 Apr 06
2
rsync 2.5.5 compilation problems
Hi,
I compiled rsync on an HPUX 11i box, and got lots of errors about
redefining sendfile() and sendpath(). The compilation succeeded, but the
binary failed. I then took a binary I had compiled on an HP11.00 box, and
it worked fine.
I tried this with both gcc & the HP ansic compilers. The same results.
I am attaching a full transcript of the configure & compilation session.
The ld
2016 Jan 31
4
configure warning on SunOS 4.1.4
Hi,
I was told to do so by configure of openssh-7.1p2 -:)
...
configure: WARNING: sys/audit.h: present but cannot be compiled
configure: WARNING: sys/audit.h: check for missing prerequisite headers?
configure: WARNING: sys/audit.h: see the Autoconf documentation
configure: WARNING: sys/audit.h: section "Present But Cannot Be
Compiled"
configure: WARNING: sys/audit.h:
2007 Feb 27
5
Swap Considerations
I am considering installing CentOS 4.4, and am interested in
how best to set up. I have been using FC2 and helping administer
a Debian machine for a few years, but do not consider myself a
Linux guru.
My current set up uses a /swap partition which is 2x my memory
size
mem = 256 MB
$ sudo /sbin/fdisk -l
/dev/hda6 76506 77545 524128+ 82 Linux swap
I'm interested in the
2001 Jun 07
2
Patch to enable multiple possible sources of entropy
...still determine the entropy source at compile time and only
the code for the one type, exactly as it does today. The patch adds a
configure option called --with-builtin-entropy.
I have tested this in all possible combinations of entropy sources, and on
6 different flavors of Unix (linux, solaris, sunos4, hpux, irix, and
unixware1). The patch is against 2.9p1 but applies cleanly to the current
CVS. Please accept this patch into the openssh code base. Don't forget to
run autoheader and autoconf.
- Dave Dykstra
*** entropy.c.O Fri Jun 1 15:52:20 2001
--- entropy.c Tue Jun 5 17:41:47 2001
*...