From 9ec70ea457bb8d6148535153aa710d8a8b114e0e Mon Sep 17 00:00:00 2001 From: J M Dieterich <dieterich@ogolem.org> Date: Sat, 3 Oct 2015 20:51:51 -0400 Subject: [PATCH] Add support for FreeBSD. --- build.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.xml b/build.xml index abfbc1a3..443d381e 100644 --- a/build.xml +++ b/build.xml @@ -5,8 +5,9 @@ <condition property="x86_or_x86_64" value="x86" else="x86_64"> <or><os arch="x86" /><os arch="i386"/></or> </condition> <condition property="dist" value="dist_windows_${x86_or_x86_64}"><os family="windows" /></condition> - <condition property="dist" value="dist_linux_${x86_or_x86_64}"><and><not><os family="mac"/></not><os family="unix" /></and></condition> + <condition property="dist" value="dist_linux_${x86_or_x86_64}"><and><not><os family="mac"/></not><not><os name="FreeBSD"/></not><os family="unix" /></and></condition> <condition property="dist" value="dist_mac_${x86_or_x86_64}"><os family="mac" /></condition> + <condition property="dist" value="dist_freebsd_${x86_or_x86_64}"><os name="FreeBSD" /></condition> <target name="help"> <echo message="Available targets are:-"/> -- GitLab