comparison graphics/pixman/pixman.sh @ 902:a133976e0783

vanilla: remove all origins, closes #2203
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 12:14:53 +0200
parents 0e6c54d47dfb
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
31 : ${LIBS:=} 31 : ${LIBS:=}
32 : ${OPENMP:=yes} 32 : ${OPENMP:=yes}
33 : ${PNG:=no} 33 : ${PNG:=no}
34 34
35 if [ "$OPENMP" = "yes" ]; then 35 if [ "$OPENMP" = "yes" ]; then
36 PKGDEPENDS="lib/openmp $PKGDEPENDS" 36 PKGDEPENDS="openmp $PKGDEPENDS"
37 with_openmp="--enable-openmp" 37 with_openmp="--enable-openmp"
38 else 38 else
39 with_openmp="--disable-openmp" 39 with_openmp="--disable-openmp"
40 fi 40 fi
41 41
42 if [ "$PNG" = "yes" ]; then 42 if [ "$PNG" = "yes" ]; then
43 PKGDEPENDS="graphics/libpng $PKGDEPENDS" 43 PKGDEPENDS="libpng $PKGDEPENDS"
44 with_png="--enable-libpng" 44 with_png="--enable-libpng"
45 else 45 else
46 with_png="--disable-libpng" 46 with_png="--disable-libpng"
47 fi 47 fi
48 48