aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorIngo Bauersachs <ingo@jitsi.org>2016-06-04 20:00:19 +0200
committerIngo Bauersachs <ingo@jitsi.org>2016-06-04 20:00:19 +0200
commitf5422c7fe3ebfda0b0034ebbcce5ca6c227950f5 (patch)
tree5f254f215097329dfa1f3c61723f71c01de2fa0d /build.xml
parentc654d18e3360b511e04eae791788653f9b92c244 (diff)
downloadjitsi-f5422c7fe3ebfda0b0034ebbcce5ca6c227950f5.zip
jitsi-f5422c7fe3ebfda0b0034ebbcce5ca6c227950f5.tar.gz
jitsi-f5422c7fe3ebfda0b0034ebbcce5ca6c227950f5.tar.bz2
Remove solaris stuff
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml29
1 files changed, 0 insertions, 29 deletions
diff --git a/build.xml b/build.xml
index a86f850..a036c49 100644
--- a/build.xml
+++ b/build.xml
@@ -11,7 +11,6 @@
<property name="bundles.dest.mac" value="${bundles.dest}/os-specific/macosx"/>
<property name="bundles.dest.win" value="${bundles.dest}/os-specific/windows"/>
<property name="bundles.dest.lin" value="${bundles.dest}/os-specific/linux"/>
- <property name="bundles.dest.sol" value="${bundles.dest}/os-specific/solaris"/>
<property name="bundles.dest.freebsd" value="${bundles.dest}/os-specific/freebsd"/>
<property name="bundles.dest.android" value="${bundles.dest}/os-specific/android"/>
<property name="doc" value="doc"/>
@@ -23,8 +22,6 @@
<property name="lib.lin.noinst" value="${lib}/os-specific/linux/installer-exclude"/>
<property name="lib.mac" value="${lib}/os-specific/mac"/>
<property name="lib.mac.noinst" value="${lib}/os-specific/mac/installer-exclude"/>
- <property name="lib.sol" value="${lib}/os-specific/solaris"/>
- <property name="lib.sol.noinst" value="${lib}/os-specific/solaris/installer-exclude"/>
<property name="lib.freebsd" value="${lib}/os-specific/freebsd"/>
<property name="lib.freebsd.noinst" value="${lib}/os-specific/freebsd/installer-exclude"/>
<property name="lib.noinst" value="${lib}/installer-exclude"/>
@@ -122,31 +119,6 @@
<isset property="is.running.linux"/>
</condition>
- <!-- solaris specific properties -->
- <condition property="is.running.solaris" value="${os.name}">
- <equals arg1="${os.name}" arg2="solaris" casesensitive="false" trim="true"/>
- </condition>
-
- <condition property="is.running.solaris" value="${os.name}">
- <equals arg1="${os.name}" arg2="SunOS" casesensitive="false" trim="true"/>
- </condition>
-
- <condition property="os.lib.home" value="${lib}/os-specific/solaris">
- <and>
- <isset property="is.running.solaris"/>
- <available file="${lib}/os-specific/solaris" type="dir"/>
- </and>
- </condition>
-
- <condition property="ld.library.path"
- value="${lib}/native/solaris:${system.LD_LIBRARY_PATH}">
- <isset property="is.running.solaris"/>
- </condition>
-
- <condition property="bundles.dest.os" value="${bundles.dest.sol}">
- <isset property="is.running.solaris"/>
- </condition>
-
<!-- mac specific properties -->
<condition property="is.running.macos" value="${os.name}">
<os family="mac"/>
@@ -515,7 +487,6 @@
<mkdir dir="${bundles.dest.lin}"/>
<mkdir dir="${bundles.dest.win}"/>
<mkdir dir="${bundles.dest.freebsd}"/>
- <mkdir dir="${bundles.dest.sol}"/>
<mkdir dir="${bundles.dest.android}"/>
<mkdir dir="${test.reports.dir}"/>