[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: Usage of Openldap Release 1.2.0



At 05:11 PM 3/25/99 -0500, Joylan Furtado wrote:
>To Technical Support,
>
>I have been trying to build LDAP Release 1.2.0 on my machine.
>
>While running the ./configure file, I get an error which says the host
>name (I put in a DNS name for my system), is not recognized.

The error actually says the host TYPE is unknown.

>The platform on which I am doing the make and install is a Tandem OSS
>environment which is similar to POSIX.

Depending on how similar it is to supported systems, it might be
quite simple to port.  The first step would be patch config.guess/sub
to recongize the platform.  Or, in the short term, you could replace
both with a simple script that echos a hardware, vendor, operating
system triple appropriate for the platform (this is usually derived
from the output of uname(1) command).
	#!/bin/sh
	echo "unknown-tandem-oss"
	exit 0

This will at least get you past the unknown host type error.  

Kurt