リビジョン | 5fe57568de808cb026675a4453045a16779aee35 (tree) |
---|---|
日時 | 2021-02-28 22:05:18 |
作者 | matsuand <30614168+matsuand@user...> |
コミッター | matsuand |
[BLFS] Modify harfbuzz.
@@ -10,9 +10,9 @@ TARGETDIR=$TARGET | ||
10 | 10 | |
11 | 11 | echo $TARGET |
12 | 12 | |
13 | -. $WRK/_checkRequired.sh \ | |
14 | - glib-2 | |
15 | -. $WRK/_checkOptions.sh cairo icu freetype \ | |
13 | +. $WRK/_checkRequired.sh "" | |
14 | +. $WRK/_checkOptions.sh \ | |
15 | + glib-2 cairo icu freetype \ | |
16 | 16 | graphite2 gobject-introspection gtk-doc |
17 | 17 | . $WRK/_checkTarball.sh |
18 | 18 | . $WRK/_checkExit.sh "$1" || exit $? |
@@ -27,6 +27,10 @@ cd $TARGETDIR | ||
27 | 27 | |
28 | 28 | Configuring |
29 | 29 | ./configure --prefix=/usr --with-gobject \ |
30 | + $([ ${OPTION_glib2} -eq 1 ] && echo --with-glib=yes) \ | |
31 | + $([ ${OPTION_glib2} -ne 1 ] && echo --with-glib=no) \ | |
32 | + $([ ${OPTION_gobjectintrospection} -eq 1 ] && echo --with-gobject=yes) \ | |
33 | + $([ ${OPTION_gobjectintrospection} -ne 1 ] && echo --with-gobject=no) \ | |
30 | 34 | $([ ${OPTION_graphite2} -eq 1 ] && echo --with-graphite2) \ |
31 | 35 | 1> $LOG/$TARGET.1_conf.log 2>&1 || exit 1 |
32 | 36 |