summaryrefslogtreecommitdiff
path: root/extra/qt5-base/PKGBUILD
blob: 0934cf8119e311287c2797ee041b30a98f67d15d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
if [ "$CARCH" = 'i486' -o "$CARCH" = 'i686' ]; then
  eval "$(
    declare -f build | \
      sed '
        s@./configure@./configure -no-sse2@g
      '
  )"
fi

# ignore mariadb on i486 (for now)
if [ "$CARCH" = 'i486' ]; then
  makedepends=(${makedepends[@]//mariadb-libs/})
  eval "$(
    declare -f build | \
      sed '
        /-plugin-sql-/s/mysql,//
      '
  )"  
fi

# enable XCB explicitely for now on i486 (rather fail early than to
# get weird startup messages of Qt5 applications hours later)
if [ "$CARCH" = 'i486' ]; then
  eval "$(
    declare -f build | \
      sed '
        s/configure/configure -xcb /
      '
  )"  
fi