Skip to content

Commit

Permalink
UnixPB: Make changes so FreeBSD works (#1077)
Browse files Browse the repository at this point in the history
  • Loading branch information
Willsparker authored and sxa555 committed Jan 6, 2020
1 parent e2188bc commit 9d87de3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,47 +7,27 @@
Build_Tool_Packages:
- alsa-lib
- autoconf
- automake
- bash
- binutils
- bison
- cups
- curl
- fontconfig
- freetype2
- gcc
- gcc-ecj
- giflib
- git
- gmake
- libICE
- libSM
- libX11
- libXau
- libXdmcp
- jpeg-turbo
- lcms2
- libXext
- libXfixes
- libXi
- libX11
- libXrandr # JDK12+ compilation
- libXrender
- libXt
- libXtst
- libdaemon
- libffi
- libfontenc
- libgnomecups
- libiconv
- libxcb
- m4
- mercurial
- mkfontdir
- nano
- openjdk
- openjdk8
- ntp
- gtar
- xextproto
- xproto
- wget
- pkgconf
- png
- unzip
- zip

gcc_compiler:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,22 @@
when:
- ccache_status.stat.isdir is not defined
- ansible_architecture != "s390x"
- ansible_distribution != "FreeBSD"
tags: ccache

- name: Running ./configure & make for CCACHE for s390x
shell: cd /tmp/ccache-3.4.2 && ./configure && make -j {{ ansible_processor_cores }} && make install
when:
- ccache_status.stat.isdir is not defined
- ansible_architecture == "s390x"
- ansible_distribution != "FreeBSD"
tags: ccache

- name: Running ./configure & make for CCACHE for FreeBSD
shell: cd /tmp/ccache-3.4.2 && ./configure && make -j {{ ansible_processor_cores }} && gmake install
when:
- ccache_status.stat.isdir is not defined
- ansible_distribution == "FreeBSD"
tags: ccache

- name: Remove downloaded packages for ccache
Expand Down

0 comments on commit 9d87de3

Please sign in to comment.