public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Compiling openldap 2.0.18...
@ 2001-12-18 12:06 Kent Perrier
  2001-12-18 12:10 ` Corinna Vinschen
  0 siblings, 1 reply; 12+ messages in thread
From: Kent Perrier @ 2001-12-18 12:06 UTC (permalink / raw)
  To: cygwin

I am attempting to compile openldap (duh) and the configure fails 
because I either don''t have a POSIX regex (which I cannot understand, 
since I have reinstalled the POSIX regex library to make sure I had it) 
or it is "broken."  At least that is what configure tells me. Since I 
saw a post to the list in October the 2.0.15 was compiled correctly I 
assumed that 2.0.18 would as well.  Is there anything special that I 
need to do to get it to work?

Kent

PS Please reply to the list only.
-- 
'My Fellow Americans, Let's Roll'

       -- President George W. Bush

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-18 12:06 Compiling openldap 2.0.18 Kent Perrier
@ 2001-12-18 12:10 ` Corinna Vinschen
  2001-12-18 12:56   ` Kent Perrier
  0 siblings, 1 reply; 12+ messages in thread
From: Corinna Vinschen @ 2001-12-18 12:10 UTC (permalink / raw)
  To: cygwin

On Tue, Dec 18, 2001 at 01:49:15PM -0600, Kent Perrier wrote:
> I am attempting to compile openldap (duh) and the configure fails 
> because I either don''t have a POSIX regex (which I cannot understand, 
> since I have reinstalled the POSIX regex library to make sure I had it) 
> or it is "broken."  At least that is what configure tells me. Since I 
> saw a post to the list in October the 2.0.15 was compiled correctly I 
> assumed that 2.0.18 would as well.  Is there anything special that I 
> need to do to get it to work?

Most if not all configure scripts expect the POSIX regex functionality
in the standard libs.  Therefore you'll have to add another check to
configure.in which checks for a regex lib.  See the OpenSSH configure.ac
file for details.

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-18 12:10 ` Corinna Vinschen
@ 2001-12-18 12:56   ` Kent Perrier
  2001-12-18 13:07     ` Corinna Vinschen
  0 siblings, 1 reply; 12+ messages in thread
From: Kent Perrier @ 2001-12-18 12:56 UTC (permalink / raw)
  To: Corinna Vinschen

On 12/18/2001 2:04 PM, Corinna Vinschen wrote:

> On Tue, Dec 18, 2001 at 01:49:15PM -0600, Kent Perrier wrote:
> 
>>I am attempting to compile openldap (duh) and the configure fails 
>>because I either don''t have a POSIX regex (which I cannot understand, 
>>since I have reinstalled the POSIX regex library to make sure I had it) 
>>or it is "broken."  At least that is what configure tells me. Since I 
>>saw a post to the list in October the 2.0.15 was compiled correctly I 
>>assumed that 2.0.18 would as well.  Is there anything special that I 
>>need to do to get it to work?
>>
> 
> Most if not all configure scripts expect the POSIX regex functionality
> in the standard libs.  Therefore you'll have to add another check to
> configure.in which checks for a regex lib.  See the OpenSSH configure.ac
> file for details.


So, I need to download the OpenSSH source to find this?  Its not a 
problem, but its a kluge to have to do this.  I assume that there is a 
good reason for the POSIX regex functionality not being in the standard 
libs.  Can you enlighten me as to the reason?



Kent
-- 
'My Fellow Americans, Let's Roll'

       -- President George W. Bush

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-18 12:56   ` Kent Perrier
@ 2001-12-18 13:07     ` Corinna Vinschen
  2001-12-18 13:14       ` Kent Perrier
  0 siblings, 1 reply; 12+ messages in thread
From: Corinna Vinschen @ 2001-12-18 13:07 UTC (permalink / raw)
  To: cygwin

On Tue, Dec 18, 2001 at 02:18:29PM -0600, Kent Perrier wrote:
> On 12/18/2001 2:04 PM, Corinna Vinschen wrote:
> > Most if not all configure scripts expect the POSIX regex functionality
> > in the standard libs.  Therefore you'll have to add another check to
> > configure.in which checks for a regex lib.  See the OpenSSH configure.ac
> > file for details.
> 
> So, I need to download the OpenSSH source to find this?  Its not a 
> problem, but its a kluge to have to do this.  

The other way would be to develop your own patch w/o looking into
the OpenSSH sources which was how I did it for OpenSSH.  I'm somewhat
surprised about your complaint.  I offered you an easy way to copy
the needed stuff from another OSS project.  I'm not obligated to do
the port for you, IIRC.

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-18 13:07     ` Corinna Vinschen
@ 2001-12-18 13:14       ` Kent Perrier
  2001-12-20 13:10         ` Jason Tishler
  0 siblings, 1 reply; 12+ messages in thread
From: Kent Perrier @ 2001-12-18 13:14 UTC (permalink / raw)
  To: Corinna Vinschen

On 12/18/2001 2:55 PM, Corinna Vinschen wrote:

> The other way would be to develop your own patch w/o looking into
> the OpenSSH sources which was how I did it for OpenSSH.  I'm somewhat
> surprised about your complaint.  I offered you an easy way to copy
> the needed stuff from another OSS project.  I'm not obligated to do
> the port for you, IIRC.


Sorry, no offense was intended.  I am just suprised that, after 
searching the mailing list for openldap and finding that, after a small 
patch was applied, "the entire OpenLDAP distribution builds cleanly 
under Cygwin now." [email from * Jason Tishler <jason at tishler dot 
net> to * Carlos de Sousa <Carlos dot de_Sousa at ebc dot ericsson dot 
se> and cc'd to cygwin at cygwin dot com on Mon, 22 Oct 2001 12:46:59 
-0400] that it would be necessary to add LIBS="$LIBS -lregex 
/usr/lib/textmode.o" to the beginning of the configure command.  I am 
supprised that openLDAP does not have a configure.ac to provide any 
platform specific configuration information to configure. Perhaps  my 
questions/offensive comments should be directed the openLDAP developers.

Anyway, if this question comes up again, the answer will be in the 
archive for people to find by searching it.

Kent

-- 
'My Fellow Americans, Let's Roll'

       -- President George W. Bush

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-18 13:14       ` Kent Perrier
@ 2001-12-20 13:10         ` Jason Tishler
  2001-12-20 14:08           ` Perrier,Kent - PLANO
  0 siblings, 1 reply; 12+ messages in thread
From: Jason Tishler @ 2001-12-20 13:10 UTC (permalink / raw)
  To: Kent Perrier; +Cc: Corinna Vinschen

Kent,

On Tue, Dec 18, 2001 at 03:09:58PM -0600, Kent Perrier wrote:
> Sorry, no offense was intended.  I am just suprised that, after 
> searching the mailing list for openldap and finding that, after a small 
> patch was applied, "the entire OpenLDAP distribution builds cleanly 
> under Cygwin now." [email from * Jason Tishler <jason at tishler dot 
> net> to * Carlos de Sousa <Carlos dot de_Sousa at ebc dot ericsson dot 
> se> and cc'd to cygwin at cygwin dot com on Mon, 22 Oct 2001 12:46:59 
> -0400] that it would be necessary to add LIBS="$LIBS -lregex 
> /usr/lib/textmode.o" to the beginning of the configure command.

You may want to try again with a recent snapshot to see if your regex
problems have been resolved:

    http://cygwin.com/ml/cygwin-developers/2001-12/msg00034.html

Please report any results back to the list.

Thanks,
Jason

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-20 13:10         ` Jason Tishler
@ 2001-12-20 14:08           ` Perrier,Kent - PLANO
  2001-12-20 14:20             ` Christopher Faylor
  0 siblings, 1 reply; 12+ messages in thread
From: Perrier,Kent - PLANO @ 2001-12-20 14:08 UTC (permalink / raw)
  To: Jason Tishler; +Cc: cygwin

On 12/20/2001 3:10 PM, Jason Tishler wrote:

> Kent,
> 
> On Tue, Dec 18, 2001 at 03:09:58PM -0600, Kent Perrier wrote:
> 
>>Sorry, no offense was intended.  I am just suprised that, after 
>>searching the mailing list for openldap and finding that, after a small 
>>patch was applied, "the entire OpenLDAP distribution builds cleanly 
>>under Cygwin now." [email from * Jason Tishler <jason at tishler dot 
>>net> to * Carlos de Sousa <Carlos dot de_Sousa at ebc dot ericsson dot 
>>se> and cc'd to cygwin at cygwin dot com on Mon, 22 Oct 2001 12:46:59 
>>-0400] that it would be necessary to add LIBS="$LIBS -lregex 
>>/usr/lib/textmode.o" to the beginning of the configure command.
>>
> 
> You may want to try again with a recent snapshot to see if your regex
> problems have been resolved:
> 
>     http://cygwin.com/ml/cygwin-developers/2001-12/msg00034.html
> 
> Please report any results back to the list.

Telling configure where the regex library with the LIBS= line from 

above worked fine.  I get openldap to compile fine, but make test 

fails. I have posted the issue to the openldap list so I am waiting 

to see if anyone can give me a clue as to the problem.

Kent
-- 
"We sleep safe in our beds because rough men stand ready in the night to
visit violence on those who would do us harm"

                                                -- George Orwell

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-20 14:08           ` Perrier,Kent - PLANO
@ 2001-12-20 14:20             ` Christopher Faylor
  2001-12-20 14:56               ` Kent Perrier
  0 siblings, 1 reply; 12+ messages in thread
From: Christopher Faylor @ 2001-12-20 14:20 UTC (permalink / raw)
  To: cygwin

On Thu, Dec 20, 2001 at 03:14:55PM -0600, Perrier,Kent - PLANO wrote:
>On 12/20/2001 3:10 PM, Jason Tishler wrote:
>>On Tue, Dec 18, 2001 at 03:09:58PM -0600, Kent Perrier wrote:
>>>Sorry, no offense was intended.  I am just suprised that, after 
>>>searching the mailing list for openldap and finding that, after a small 
>>>patch was applied, "the entire OpenLDAP distribution builds cleanly 
>>>under Cygwin now." [email from * Jason Tishler <jason at tishler dot 
>>>net> to * Carlos de Sousa <Carlos dot de_Sousa at ebc dot ericsson dot 
>>>se> and cc'd to cygwin at cygwin dot com on Mon, 22 Oct 2001 12:46:59 
>>>-0400] that it would be necessary to add LIBS="$LIBS -lregex 
>>>/usr/lib/textmode.o" to the beginning of the configure command.
>>>
>>
>>You may want to try again with a recent snapshot to see if your regex
>>problems have been resolved:
>>
>>    http://cygwin.com/ml/cygwin-developers/2001-12/msg00034.html
>>
>>Please report any results back to the list.
>
>Telling configure where the regex library with the LIBS= line from 
>above worked fine.

Jason was pointing you to a potential solution that does not require
you to use LIBS=whatever.

cgf

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-20 14:20             ` Christopher Faylor
@ 2001-12-20 14:56               ` Kent Perrier
  2001-12-21  4:14                 ` Jason Tishler
  0 siblings, 1 reply; 12+ messages in thread
From: Kent Perrier @ 2001-12-20 14:56 UTC (permalink / raw)
  To: cygwin

On 12/20/2001 4:07 PM, Christopher Faylor wrote:

> On Thu, Dec 20, 2001 at 03:14:55PM -0600, Perrier,Kent - PLANO wrote:
> 
>>On 12/20/2001 3:10 PM, Jason Tishler wrote:
>>
>>>On Tue, Dec 18, 2001 at 03:09:58PM -0600, Kent Perrier wrote:
>>>
>>>>Sorry, no offense was intended.  I am just suprised that, after 
>>>>searching the mailing list for openldap and finding that, after a small 
>>>>patch was applied, "the entire OpenLDAP distribution builds cleanly 
>>>>under Cygwin now." [email from * Jason Tishler <jason at tishler dot 
>>>>net> to * Carlos de Sousa <Carlos dot de_Sousa at ebc dot ericsson dot 
>>>>se> and cc'd to cygwin at cygwin dot com on Mon, 22 Oct 2001 12:46:59 
>>>>-0400] that it would be necessary to add LIBS="$LIBS -lregex 
>>>>/usr/lib/textmode.o" to the beginning of the configure command.
>>>>
>>>>
>>>You may want to try again with a recent snapshot to see if your regex
>>>problems have been resolved:
>>>
>>>   http://cygwin.com/ml/cygwin-developers/2001-12/msg00034.html
>>>
>>>Please report any results back to the list.
>>>
>>Telling configure where the regex library with the LIBS= line from 
>>above worked fine.
>>
> 
> Jason was pointing you to a potential solution that does not require
> you to use LIBS=whatever.


Yeah.  But I am past that part now. :)

Kent
-- 
"We sleep safe in our beds because rough men stand ready in the night to
visit violence on those who would do us harm"

                                                -- George Orwell

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-20 14:56               ` Kent Perrier
@ 2001-12-21  4:14                 ` Jason Tishler
  0 siblings, 0 replies; 12+ messages in thread
From: Jason Tishler @ 2001-12-21  4:14 UTC (permalink / raw)
  To: Kent Perrier; +Cc: cygwin

Kent,

On Thu, Dec 20, 2001 at 04:16:18PM -0600, Kent Perrier wrote:
> On 12/20/2001 4:07 PM, Christopher Faylor wrote:
> >On Thu, Dec 20, 2001 at 03:14:55PM -0600, Perrier,Kent - PLANO wrote:
> >>Telling configure where the regex library with the LIBS= line from 
> >>above worked fine.
> >
> >Jason was pointing you to a potential solution that does not require
> >you to use LIBS=whatever.
> 
> Yeah.  But I am past that part now. :)

Understood, but:

On Tue, Dec 18, 2001 at 03:09:58PM -0600, Kent Perrier wrote:
> I am supprised that openLDAP does not have a configure.ac to provide
> any platform specific configuration information to configure. Perhaps
> my questions/offensive comments should be directed the openLDAP
> developers.

On Thu, Dec 20, 2001 at 03:14:55PM -0600, Kent Perrier wrote:
> I get openldap to compile fine, but make test fails. I have posted
> the issue to the openldap list so I am waiting to see if anyone can
> give me a clue as to the problem.

The above imply that you may have set in motion the efforts of OpenLDAP
developers to attempt to rectify a problem that no longer exists.
Common courteous suggests that you should try a snapshot with the built-in
regex to see if it solves your problem.  And if so, inform the OpenLDAP
developers of this fact, so that they can drop this issue and spend
their time more productively.

Thanks,
Jason

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
  2001-12-20  8:41 Ames Andreas (PN-SYS/A)
@ 2001-12-20 13:13 ` Jason Tishler
  0 siblings, 0 replies; 12+ messages in thread
From: Jason Tishler @ 2001-12-20 13:13 UTC (permalink / raw)
  To: Ames Andreas (PN-SYS/A); +Cc: cygwin

Andreas,

On Thu, Dec 20, 2001 at 05:28:14PM +0100, Ames Andreas (PN-SYS/A) wrote:
> When linking slapd I get the following error message:
> 
> "Warning: resolving _gdbm_errno by linking to __imp__gdbm_errno
> (auto-import)
> nmth000000.o(.idata$4+0x0): undefined reference to
> `_nm__gdbm_errno'"

See the following for a patch which should solve the above:

    http://sources.redhat.com/ml/cygwin/2001-10/msg01248.html

Jason

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Compiling openldap 2.0.18...
@ 2001-12-20  8:41 Ames Andreas (PN-SYS/A)
  2001-12-20 13:13 ` Jason Tishler
  0 siblings, 1 reply; 12+ messages in thread
From: Ames Andreas (PN-SYS/A) @ 2001-12-20  8:41 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 1549 bytes --]

Hi,

Kent Perrier <kent.perrier@oneco.net> writes:

> I am attempting to compile openldap (duh) and the configure fails
> because I either don''t have a POSIX regex (which I cannot
> understand, since I have reinstalled the POSIX regex library to make
> sure I had it) or it is "broken."  At least that is what configure
> tells me. Since I saw a post to the list in October the 2.0.15 was
> compiled correctly I assumed that 2.0.18 would as well.  Is there
> anything special that I need to do to get it to work?

I've also tried to compile openldap 2.0.18 on cygwin.  I resolved the
configure issue by just commenting out the respective section ;-B;
finally I know that regexp is there and I don't need configure to
guess around.  I've included the 'patched' configure-script.  In this
forma it runs successfully on my system.

But even then openldap refuses to compile completely.  Compilation
breaks in the server part.

When linking slapd I get the following error message:

"Warning: resolving _gdbm_errno by linking to __imp__gdbm_errno
(auto-import)
nmth000000.o(.idata$4+0x0): undefined reference to
`_nm__gdbm_errno'"

libgdbm is in the library list.  This *may* be just an issue of
sequence of libraries but I don't know.

As I currently only need the client part (ldapsearch for integration
in emacs) I didn't check out how to 'repair' openldap for cygwin.  The
needed client parts are correctly compiled.  Please note that there is
a MSVC .dsp file in the 'build'-subdirectory.  Perhaps it is usable,
but I didn't try.


HTH,

andreas


[-- Attachment #2: configure_openldap_2.0.18.patch --]
[-- Type: application/octet-stream, Size: 2520 bytes --]

--- configure~	Tue Oct 23 17:46:32 2001
+++ configure	Wed Oct 31 17:24:15 2001
@@ -5252,55 +5252,57 @@
 
 
 
-echo $ac_n "checking for compatible POSIX regex""... $ac_c" 1>&6
-echo "configure:5257: checking for compatible POSIX regex" >&5
-if eval "test \"\${ol_cv_c_posix_regex+set}\" = set"; then
-  echo $ac_n "(cached) $ac_c" 1>&6
-else
-  
-	if test "$cross_compiling" = yes; then
-  ol_cv_c_posix_regex=cross
-else
-  cat > conftest.$ac_ext <<EOF
-#line 5266 "configure"
-#include "confdefs.h"
-
-#include <sys/types.h>
-#include <regex.h>
-static char *pattern, *string;
-main()
-{
-	int rc;
-	regex_t re;
-
-	pattern = "^A";
-
-	if(regcomp(&re, pattern, 0)) {
-		return -1;
-	}
+# echo $ac_n "checking for compatible POSIX regex""... $ac_c" 1>&6
+# echo "configure:5257: checking for compatible POSIX regex" >&5
+# if eval "test \"\${ol_cv_c_posix_regex+set}\" = set"; then
+#     echo $ac_n "(cached) $ac_c" 1>&6
+# else
+    
+#     if test "$cross_compiling" = yes; then
+#         ol_cv_c_posix_regex=cross
+#     else
+#         cat > conftest.$ac_ext <<EOF
+# #line 5266 "configure"
+# #include "confdefs.h"
+
+# #include <sys/types.h>
+# #include <regex.h>
+# static char *pattern, *string;
+# main()
+# {
+# 	int rc;
+# 	regex_t re;
+
+# 	pattern = "^A";
+
+# 	if(regcomp(&re, pattern, 0)) {
+# 		return -1;
+# 	}
 	
-	string = "ALL MATCH";
+# 	string = "ALL MATCH";
 	
-	rc = regexec(&re, string, 0, (void*)0, 0);
+# 	rc = regexec(&re, string, 0, (void*)0, 0);
 
-	regfree(&re);
+# 	regfree(&re);
 
-	return rc;
-}
-EOF
-if { (eval echo configure:5292: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
-then
-  ol_cv_c_posix_regex=yes
-else
-  echo "configure: failed program was:" >&5
-  cat conftest.$ac_ext >&5
-  rm -fr conftest*
-  ol_cv_c_posix_regex=no
-fi
-rm -fr conftest*
-fi
+# 	return rc;
+# }
+# EOF
+#         if { (eval echo configure:5292: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit)
+#             then
+#             ol_cv_c_posix_regex=yes
+#         else
+#             echo "configure: failed program was:" >&5
+#             cat conftest.$ac_ext >&5
+#             rm -fr conftest*
+#             ol_cv_c_posix_regex=no
+#         fi
+#         rm -fr conftest*
+#     fi
+    
+# fi
 
-fi
+ol_cv_c_posix_regex=yes
 
 echo "$ac_t""$ol_cv_c_posix_regex" 1>&6
 


[-- Attachment #3: Type: text/plain, Size: 214 bytes --]

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2001-12-21 12:13 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-12-18 12:06 Compiling openldap 2.0.18 Kent Perrier
2001-12-18 12:10 ` Corinna Vinschen
2001-12-18 12:56   ` Kent Perrier
2001-12-18 13:07     ` Corinna Vinschen
2001-12-18 13:14       ` Kent Perrier
2001-12-20 13:10         ` Jason Tishler
2001-12-20 14:08           ` Perrier,Kent - PLANO
2001-12-20 14:20             ` Christopher Faylor
2001-12-20 14:56               ` Kent Perrier
2001-12-21  4:14                 ` Jason Tishler
2001-12-20  8:41 Ames Andreas (PN-SYS/A)
2001-12-20 13:13 ` Jason Tishler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).