summaryrefslogtreecommitdiffstats
path: root/juniper
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-08-31 14:43:56 +0200
committerHenning Baldersheim <balder@oath.com>2018-08-31 14:43:56 +0200
commitb087698e692dd73be89b8e35fe92304aa0783d51 (patch)
tree20f17a471d5bfac93da80d0f107d2246c00f82f1 /juniper
parentfcb7879d82904fd86a6773c3b22bba2c31fd5b94 (diff)
Remove some unused code
Diffstat (limited to 'juniper')
-rw-r--r--juniper/build/buildspec.xml60
1 files changed, 0 insertions, 60 deletions
diff --git a/juniper/build/buildspec.xml b/juniper/build/buildspec.xml
deleted file mode 100644
index 335140f192f..00000000000
--- a/juniper/build/buildspec.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
-<BuildSpecification>
- <Dependencies os="all" arch="all">
- <dep package="common/fastos" version="1.5.99.2">
- <!-- Use stl-port when compiling on platforms with gcc and on windows -->
- <if os="linux,freebsd">
- <addfeature name="stl-port" />
- </if>
- </dep>
- <dep package="common/fastlib" version="1.6.4" />
- <dep package="3rdparty/libiconv" version="1.8" featureset="iconvconst" />
- </Dependencies>
-
- <PreBuild os="all" arch="all" nocopy="yes">
- <if os="XXaix">
- <!-- Iconv library has been renamed to fsiconv on aix to avoid -->
- <!-- mix-ups with other installations. We must alter some -->
- <!-- files to make the linking work. -->
- <replace token="LIBDIR_ICONV" value="LIBDIR_FSICONV">
- <file path="Makefile" />
- <file path="configure.cfg" />
- </replace>
- <replace token=" iconv" value=" fsiconv">
- <file path="src/test/fastos.project" />
- </replace>
- </if>
- <configure path="">
- <parameter value="--fastos-dir ${fbuild_install_dir}/fastos" />
- <parameter value="--fastlib-dir ${fbuild_install_dir}/fastlib" />
- <parameter value="--iconv-dir ${fbuild_install_dir}/iconv" />
- <parameter value="--install-dir ${fbuild_install_dir}/juniper" />
- <parameter value="--version ${fbuild_package_version}" />
- </configure>
- <make path="" target="makefiles" />
- <make path="" target="depend" />
- </PreBuild>
-
- <Build os="unix" arch="all">
- <make path="" target="all" />
- </Build>
-
- <Build os="win32" arch="all">
- <make path="" target="all" />
- </Build>
-
- <PostBuild os="all" arch="all">
- </PostBuild>
-
- <Test os="all" arch="all">
- <make path="src/test" parameters="test" />
- </Test>
-
- <Install os="all" arch="all">
- <make path="" target="install" />
- </Install>
-
- <Dist os="all" arch="all">
- </Dist>
-
-</BuildSpecification>