Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id CE866200AF6 for ; Sat, 11 Jun 2016 12:36:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id CD19C160A54; Sat, 11 Jun 2016 10:36:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 18BEE160A1A for ; Sat, 11 Jun 2016 12:36:21 +0200 (CEST) Received: (qmail 40683 invoked by uid 500); 11 Jun 2016 10:36:21 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 40658 invoked by uid 99); 11 Jun 2016 10:36:21 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Jun 2016 10:36:21 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 161522C0452 for ; Sat, 11 Jun 2016 10:36:21 +0000 (UTC) Date: Sat, 11 Jun 2016 10:36:20 +0000 (UTC) From: "Sebb (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CRYPTO-66) Warnings compiling on MacOSX - bootstrap class path not set MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sat, 11 Jun 2016 10:36:23 -0000 Sebb created CRYPTO-66: -------------------------- Summary: Warnings compiling on MacOSX - bootstrap class path not set Key: CRYPTO-66 URL: https://issues.apache.org/jira/browse/CRYPTO-66 Project: Commons Crypto Issue Type: Bug Reporter: Sebb The following appears in the build output: [exec] "$JAVA_HOME/bin/javac" -source 1.6 -target 1.6 -d target/jni-classes -sourcepath src/main/java src/main/java/org/apache/commons/crypto/random/OpensslCryptoRandomNative.java [exec] warning: [options] bootstrap class path not set in conjunction with -source 1.6 This can be fixed by adding something like the following to Makefile: $(JAVAC) $(BOOT) -source 1.6 ... where BOOT_LIB:=$(JAVA_HOME)/jre/lib/rt.jar BOOT:=-bootclasspath $(BOOT_LIB) The BOOT variables should probably be defined in Makefile.common -- This message was sent by Atlassian JIRA (v6.3.4#6332)