commit 94ac2fe
chld
·
2026-08-22 05:05:04 +0000 UTC
parent 90ff51c
more configure, gmake
1 files changed,
+7,
-1
+7,
-1
1@@ -4,19 +4,24 @@ VERSION=30.2
2 RELEASE=1
3 SOURCE="https://ftp.gnu.org/gnu/emacs/emacs-30.2.tar.xz"
4 build(){
5- ./configure \
6+ CFLAGS='-static' LDFLAGS='-static' ./configure \
7 --prefix=/ \
8 --bindir=/bin \
9 --sbindir=/bin \
10 --libdir=/lib \
11 --includedir=/include \
12 --sysconfdir=/etc \
13+ --without-pop \
14+ --without-mailutils \
15 --without-x \
16+ --without-pgtk \
17 --without-gnutls \
18 --without-dbus \
19 --without-xim \
20 --without-xaw3d \
21 --without-gpm \
22+ --without-be-cairo \
23+ --without-be-app \
24 --without-selinux \
25 --without-zlib \
26 --without-xinput2 \
27@@ -31,6 +36,7 @@ build(){
28 --without-lcms2 \
29 --without-libsystemd
30
31+ CFLAGS='-static' LDFLAGS='-static' gmake
32
33 }
34 . ${0%/*}/../../libsh/libdmake.sh