trawick     01/12/01 09:43:52

  Modified:    .        configure.in
  Log:
  shared apr-util is doomed to segfault unless it is told what
  it should find in apr; why libtool doesn't handle this already
  is beyond me
  
  Revision  Changes    Path
  1.37      +6 -0      apr-util/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr-util/configure.in,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- configure.in      2001/11/07 02:57:21     1.36
  +++ configure.in      2001/12/01 17:43:52     1.37
  @@ -69,6 +69,12 @@
       # apr and expat libraries to the build...  Grrrr...
       EXTRA_OS_LINK="$APR_SOURCE_DIR/libapr.la 
$top_builddir/xml/expat/lib/libexpat.la"
       ;;
  +AIX)
  +    # On AIX, since shared library aprutil depends on shared library apr we
  +    # have to specify an import file for apr.  But of course libtool should
  +    # do this for us.  Darn...
  +    EXTRA_OS_LINK="-Wl,-bI:$APR_SOURCE_DIR/apr.exp"
  +    ;;
   *)
       ;;
   esac
  
  
  

Reply via email to