summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoan Figueras2017-06-07 11:31:25 +0200
committerJoan Figueras2017-06-07 11:31:25 +0200
commita2096996951a60262153f0d401fe787a75e92935 (patch)
tree4ca74dc9cefa38a867c49cf2aa86b01b7f38d5fb
parent9067d9ff8af863d0ed82c0d3ba919066b8625da1 (diff)
downloadaur-a2096996951a60262153f0d401fe787a75e92935.tar.gz
GCC 7.1.1 workaround
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8eef38641c7e..2340f3b84a2c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = guacamole-server
pkgdesc = Guacamole proxy daemon
pkgver = 0.9.12
- pkgrel = 2
+ pkgrel = 3
url = http://guacamole.sourceforge.net/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index b0def018fac5..647b758cde88 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=guacamole-server
pkgver=0.9.12
-pkgrel=2
+pkgrel=3
pkgdesc="Guacamole proxy daemon"
arch=('i686' 'x86_64')
url="http://guacamole.sourceforge.net/"
@@ -28,7 +28,7 @@ build() {
PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig \
CFLAGS+=" -I/usr/include/openssl-1.0" \
LDFLAGS+=" -L/usr/lib/openssl-1.0 -lssl" \
- ./configure --with-openssl --prefix=/usr --sbindir=/usr/bin CPPFLAGS="-Wno-error=pedantic"
+ ./configure --with-openssl --prefix=/usr --sbindir=/usr/bin CPPFLAGS="-Wno-error=pedantic -Wno-error=format-overflow" ## Wno-error=format-overflow added to workaround build in GCC 7.1.1
make
}