• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisióna486d433ba86e6e2734294f5fb3ad63d1e7054ec (tree)
Tiempo2021-12-22 15:32:10
Autormatsuand <30614168+matsuand@user...>
Commitermatsuand

Log Message

[BLFS] Update wayland-1.20.0.

Cambiar Resumen

Diferencia incremental

--- a/BLFS/wayland.sh
+++ b/BLFS/wayland.sh
@@ -3,7 +3,7 @@
33 . ./_blfsset.sh
44
55 APPNAME=wayland
6-VER=1.18.0
6+VER=1.20.0
77 TARGET=$APPNAME-$VER
88 TARGETBALL=$DLD/$TARGET.tar.xz
99 TARGETDIR=$TARGET
@@ -24,24 +24,27 @@ TimeStart
2424
2525 cd $TARGETDIR
2626
27+mkdir build
28+cd build
29+
2730 Configuring
28-./configure --prefix=/usr \
29- --disable-static \
30- --disable-documentation \
31+meson --prefix=/usr \
32+ --buildtype=release \
33+ -Ddocumentation=false \
3134 1> $LOG/$TARGET.1_conf.log 2>&1 || exit 1
3235
3336 Making
34-make \
37+ninja \
3538 1> $LOG/$TARGET.2_make.log 2>&1 || exit 1
3639
3740 PWD=`pwd`
3841 Installing
39-porg -lp $TARGET -E$PWD "make install" \
42+porg -lp $TARGET -E$PWD "ninja install" \
4043 1> $LOG/$TARGET.3_install.log 2>&1 || exit 1
4144
4245 TimeEnd
4346
44-cd ..
47+cd ../..
4548 RemoveSrcDir
4649 PorgingDone
4750