Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UnixPB: Make changes so FreeBSD works #1077

Merged
merged 1 commit into from
Jan 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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