Disable clang by default

This commit is contained in:
Figue 2018-09-14 17:58:27 +02:00
parent 42995ab30e
commit d4911bb556
2 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,6 @@ pkgbase = icecat
optdepends = libnotify: Notification integration
optdepends = pulseaudio: Audio support
optdepends = speech-dispatcher: Text-to-Speech
optdepends = clang
source = http://alpha.gnu.org/gnu/gnuzilla/60.2.0/icecat-60.2.0-gnu1.tar.bz2
source = http://alpha.gnu.org/gnu/gnuzilla/60.2.0/icecat-60.2.0-gnu1.tar.bz2.sig
source = icecat.desktop

View file

@ -23,8 +23,9 @@ optdepends=('networkmanager: Location detection via available WiFi networks'
'pulseaudio: Audio support'
'speech-dispatcher: Text-to-Speech')
# Set this variable to 1 if you want to build with clang compiler
_CLANG=1
## Set this variable to 1 if you want to build with clang compiler ##
_CLANG=0
if [ "$_CLANG" -eq "1" ]; then
optdepends+=(clang)
fi