Ignore:
Timestamp:
Mar 26, 2011, 8:39:20 PM (14 years ago)
Author:
dmik
Message:

trunk: Merged in openjdk6 b22 from branches/vendor/oracle.

Location:
trunk/openjdk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk

  • trunk/openjdk/hotspot/agent/make/saenv64.sh

    r2 r278  
    11#!/bin/sh
    22#
    3 # Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
     3# Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved.
    44# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    55#
     
    1818# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1919#
    20 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    21 # CA 95054 USA or visit www.sun.com if you need additional information or
    22 # have any questions.
     20# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     21# or visit www.oracle.com if you need additional information or have any
     22# questions.
    2323
    2424#
     
    4444fi
    4545
    46 LD_AUDIT_64=$STARTDIR/../src/os/solaris/proc/$CPU/libsaproc_audit.so
    47 export LD_AUDIT_64
     46# configure audit helper library if SA_ALTROOT is set
     47if [ -n "$SA_ALTROOT" ]; then
     48  LD_AUDIT_64=$STARTDIR/../src/os/solaris/proc/$CPU/libsaproc_audit.so
     49  export LD_AUDIT_64
     50  if [ ! -f $LD_AUDIT_64 ]; then
     51      echo "SA_ALTROOT is set and can't find libsaproc_audit.so."
     52      echo "Make sure to build it with 'make natives'."
     53      exit 1
     54  fi
     55fi
    4856SA_LIBPATH=$STARTDIR/../src/os/solaris/proc/$CPU:$STARTDIR/solaris/$CPU
    4957
Note: See TracChangeset for help on using the changeset viewer.