Re: [HACKERS] unixware and --with-ldap - Mailing list pgsql-patches

From Bruce Momjian
Subject Re: [HACKERS] unixware and --with-ldap
Date
Msg-id 200702030244.l132iRu01969@momjian.us
Whole thread Raw
List pgsql-patches
Patch attached and applied. Sorry for the delay.  Backpatched to 8.2.X.

---------------------------------------------------------------------------

Albe Laurenz wrote:
> >>> If libldap_r.so does require the same libs, please add
> $EXTRA_LDAP_LIBS
> >>> to the 'LDAP_LIBS_FE="-lldap_r"' line as well.
> >>
> >> Actually, I did that in the patch-as-committed.  It seems to me that
> >> it's probably harmless even if not needed.
> >
> > I have tried --with-thread-safety and configure fails on ldap check
> > because for some reason CTHREAD_FLAGS (-Kpthread for UW) is missing
> > on compile command, although present before that. I can't find why
>
> You mean PTHREAD_FLAGS, right?
>
> If it is present in line 1118, it should also be present in line 1133.
>
> Can you verify that the part on configure.in between 1065 and 1118,
> -Kpthread is correctly set on Unixware?
>
> If not, thread support for Unixware is probebly broken.
>
> If yes, something strange is going on.
>
> Yours,
> Laurenz Albe
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: Have you checked our extensive FAQ?
>
>                http://www.postgresql.org/docs/faq

--
  Bruce Momjian   bruce@momjian.us
  EnterpriseDB    http://www.enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +
Index: configure
===================================================================
RCS file: /cvsroot/pgsql/configure,v
retrieving revision 1.532
diff -c -c -r1.532 configure
*** configure    28 Jan 2007 03:50:33 -0000    1.532
--- configure    3 Feb 2007 02:37:15 -0000
***************
*** 17609,17615 ****
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    ac_check_lib_save_LIBS=$LIBS
! LIBS="-lldap_r $PTHREAD_LIBS $EXTRA_LDAP_LIBS $LIBS"
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
--- 17609,17615 ----
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    ac_check_lib_save_LIBS=$LIBS
! LIBS="-lldap_r $PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS $LIBS"
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
Index: configure.in
===================================================================
RCS file: /cvsroot/pgsql/configure.in,v
retrieving revision 1.499
diff -c -c -r1.499 configure.in
*** configure.in    28 Jan 2007 03:50:33 -0000    1.499
--- configure.in    3 Feb 2007 02:37:17 -0000
***************
*** 1152,1158 ****
        # on some platforms ldap_r fails to link without PTHREAD_LIBS
        AC_CHECK_LIB(ldap_r, ldap_simple_bind, [],
             [AC_MSG_ERROR([library 'ldap_r' is required for LDAP])],
!            [$PTHREAD_LIBS $EXTRA_LDAP_LIBS])
        LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"
      else
        LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
--- 1152,1158 ----
        # on some platforms ldap_r fails to link without PTHREAD_LIBS
        AC_CHECK_LIB(ldap_r, ldap_simple_bind, [],
             [AC_MSG_ERROR([library 'ldap_r' is required for LDAP])],
!            [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
        LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"
      else
        LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"

pgsql-patches by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: Re: [pgsql-patches] [GENERAL] Corrupt database? 8.1/FreeBSD6.0
Next
From: Jeremy Drake
Date:
Subject: Re: [HACKERS] writing new regexp functions