40 lines
985 B
Diff
40 lines
985 B
Diff
From 562f01f9f740937c28d59ce37770a07716039d52 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Yong <10walls@gmail.com>
|
|
Date: Sat, 28 Jun 2014 08:45:53 +0800
|
|
Subject: [PATCH 05/21] use -avoid-version if not tracking SO version
|
|
|
|
---
|
|
libjava/classpath/configure | 2 +-
|
|
libjava/classpath/configure.ac | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/libjava/classpath/configure b/libjava/classpath/configure
|
|
index 6d46403..801f6ec 100755
|
|
--- a/libjava/classpath/configure
|
|
+++ b/libjava/classpath/configure
|
|
@@ -3181,7 +3181,7 @@ case "$host_os" in
|
|
cp_module=""
|
|
;;
|
|
*)
|
|
- cp_module="-module"
|
|
+ cp_module="-module -avoid-version"
|
|
;;
|
|
esac
|
|
|
|
diff --git a/libjava/classpath/configure.ac b/libjava/classpath/configure.ac
|
|
index 245e1df..5c6f229 100644
|
|
--- a/libjava/classpath/configure.ac
|
|
+++ b/libjava/classpath/configure.ac
|
|
@@ -64,7 +64,7 @@ case "$host_os" in
|
|
cp_module=""
|
|
;;
|
|
*)
|
|
- cp_module="-module"
|
|
+ cp_module="-module -avoid-version"
|
|
;;
|
|
esac
|
|
|
|
--
|
|
2.4.5
|
|
|