Build Emacs 29 with libwebp by default

This commit is contained in:
Brian Leung 2022-07-30 22:48:48 -07:00
parent 6c868dbad3
commit e46c7738bd
No known key found for this signature in database
GPG key ID: 2D86D6A94C8BB3B1

View file

@ -82,12 +82,13 @@ let
}
);
emacsGit = mkGitEmacs "emacs-git" ./repos/emacs/emacs-master.json { withSQLite3 = true; };
emacsGit = mkGitEmacs "emacs-git" ./repos/emacs/emacs-master.json { withSQLite3 = true; withWebP = true; };
emacsNativeComp = super.emacsNativeComp or (mkGitEmacs "emacs-native-comp" ./repos/emacs/emacs-unstable.json { nativeComp = true; });
emacsGitNativeComp = mkGitEmacs "emacs-git-native-comp" ./repos/emacs/emacs-master.json {
withSQLite3 = true;
withWebP = true;
nativeComp = true;
};