forked from pool/emacs
Now also with a wayland compatible gtk binary
OBS-URL: https://build.opensuse.org/package/show/editors/emacs?expand=0&rev=360
This commit is contained in:
parent
a494d2f3aa
commit
ccf687afe2
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 26 12:37:30 UTC 2023 - Dr. Werner Fink <werner@suse.de>
|
||||||
|
|
||||||
|
- Now with changed pdump.patch patch from bjorn.bidar@thaodan.de
|
||||||
|
- Build also wayland gtk based binary
|
||||||
|
- Support wayland binary by checking for XDG_SESSION_TYPE
|
||||||
|
- Provide eln native shared binaries for all emacs program binaries
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 26 00:11:46 UTC 2023 - Björn Bidar <bjorn.bidar@thaodan.de>
|
Tue Sep 26 00:11:46 UTC 2023 - Björn Bidar <bjorn.bidar@thaodan.de>
|
||||||
|
|
||||||
|
22
emacs.sh
22
emacs.sh
@ -5,9 +5,10 @@
|
|||||||
# The environment variable EMACS_TOOLKIT is used to determine
|
# The environment variable EMACS_TOOLKIT is used to determine
|
||||||
# the prefered GUI. Possible values/types of EMACS_TOOLKIT are
|
# the prefered GUI. Possible values/types of EMACS_TOOLKIT are
|
||||||
#
|
#
|
||||||
# nox -- for pure console based GNU Emacs
|
# nox -- for pure console based GNU Emacs
|
||||||
# gtk -- for full GTK2/3 based GNU Emacs
|
# gtk -- for full GTK2/3 based GNU Emacs (for real X11)
|
||||||
# x11 -- for full LUCID based GNU Emacs (used Xaw3d)
|
# wayland -- for full GTK2/3 based GNU Emacs (for wayland)
|
||||||
|
# x11 -- for full LUCID based GNU Emacs (used Xaw3d)
|
||||||
#
|
#
|
||||||
# Should work but remember history
|
# Should work but remember history
|
||||||
# bnc#345669 -- Emacs doesn't un-maximize in KDE/KWin
|
# bnc#345669 -- Emacs doesn't un-maximize in KDE/KWin
|
||||||
@ -21,11 +22,22 @@
|
|||||||
# esac
|
# esac
|
||||||
# fi
|
# fi
|
||||||
#
|
#
|
||||||
: ${EMACS_TOOLKIT:=gtk}
|
if test -n "${XDG_SESSION_TYPE}"
|
||||||
|
then
|
||||||
|
if test "${XDG_SESSION_TYPE}" = wayland -a -x ${0}-wayland
|
||||||
|
then
|
||||||
|
: ${EMACS_TOOLKIT:=wayland}
|
||||||
|
else
|
||||||
|
: ${EMACS_TOOLKIT:=gtk}
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
: ${EMACS_TOOLKIT:=gtk}
|
||||||
|
fi
|
||||||
#
|
#
|
||||||
# Enabled again
|
# Enabled again
|
||||||
#
|
#
|
||||||
if test "$EMACS_TOOLKIT" = gtk; then
|
if test "$EMACS_TOOLKIT" = gtk -o "$EMACS_TOOLKIT" = wayland
|
||||||
|
then
|
||||||
# Currently (2013/05/24) the parser of the GNOME libs
|
# Currently (2013/05/24) the parser of the GNOME libs
|
||||||
# are broken that is it is not independent from locale
|
# are broken that is it is not independent from locale
|
||||||
LC_NUMERIC=POSIX
|
LC_NUMERIC=POSIX
|
||||||
|
79
emacs.spec
79
emacs.spec
@ -148,6 +148,7 @@ BuildRequires: pkgconfig(xrandr)
|
|||||||
BuildRequires: pkgconfig(xrender)
|
BuildRequires: pkgconfig(xrender)
|
||||||
BuildRequires: pkgconfig(xshmfence)
|
BuildRequires: pkgconfig(xshmfence)
|
||||||
BuildRequires: pkgconfig(xt)
|
BuildRequires: pkgconfig(xt)
|
||||||
|
BuildRequires: pkgconfig(xwayland)
|
||||||
BuildRequires: pkgconfig(xxf86vm)
|
BuildRequires: pkgconfig(xxf86vm)
|
||||||
URL: http://www.gnu.org/software/emacs/
|
URL: http://www.gnu.org/software/emacs/
|
||||||
Version: 29.1
|
Version: 29.1
|
||||||
@ -256,6 +257,8 @@ Requires: gnu-unifont-bitmap-fonts
|
|||||||
Requires: ifnteuro
|
Requires: ifnteuro
|
||||||
Requires: xorg-x11-fonts
|
Requires: xorg-x11-fonts
|
||||||
Requires: xorg-x11-fonts-core
|
Requires: xorg-x11-fonts-core
|
||||||
|
Requires: (ghostscript-fonts-std or urw-base35-fonts)
|
||||||
|
%glib2_gsettings_schema_requires
|
||||||
Enhances: libX11-6
|
Enhances: libX11-6
|
||||||
Summary: GNU Emacs: Emacs binary with X Window System Support
|
Summary: GNU Emacs: Emacs binary with X Window System Support
|
||||||
Group: Productivity/Text/Editors
|
Group: Productivity/Text/Editors
|
||||||
@ -352,6 +355,7 @@ popd
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
umask 022
|
||||||
%if %{without autoconf}
|
%if %{without autoconf}
|
||||||
# We don't want to run autoconf
|
# We don't want to run autoconf
|
||||||
if test configure.ac -nt aclocal.m4 -o m4/gnulib-comp.m4 -nt aclocal.m4 ; then
|
if test configure.ac -nt aclocal.m4 -o m4/gnulib-comp.m4 -nt aclocal.m4 ; then
|
||||||
@ -462,6 +466,7 @@ DESKTOP="--with-x \
|
|||||||
"
|
"
|
||||||
GTK="${DESKTOP} \
|
GTK="${DESKTOP} \
|
||||||
--with-x-toolkit=gtk3 \
|
--with-x-toolkit=gtk3 \
|
||||||
|
--without-pgtk \
|
||||||
--with-toolkit-scroll-bars \
|
--with-toolkit-scroll-bars \
|
||||||
--x-includes=%{_x11inc} \
|
--x-includes=%{_x11inc} \
|
||||||
--x-libraries=%{_x11lib} \
|
--x-libraries=%{_x11lib} \
|
||||||
@ -469,11 +474,6 @@ DESKTOP="--with-x \
|
|||||||
--with-m17n-flt \
|
--with-m17n-flt \
|
||||||
%if %{with cairo}
|
%if %{with cairo}
|
||||||
--with-cairo \
|
--with-cairo \
|
||||||
%endif
|
|
||||||
%if %{with nativecomp}
|
|
||||||
--with-native-compilation \
|
|
||||||
%else
|
|
||||||
--without-native-compilation \
|
|
||||||
%endif
|
%endif
|
||||||
--with-xwidgets \
|
--with-xwidgets \
|
||||||
"
|
"
|
||||||
@ -484,7 +484,6 @@ DESKTOP="--with-x \
|
|||||||
--x-libraries=%{_x11lib}:%{_x11data} \
|
--x-libraries=%{_x11lib}:%{_x11data} \
|
||||||
--without-libotf \
|
--without-libotf \
|
||||||
--without-m17n-flt \
|
--without-m17n-flt \
|
||||||
--without-native-compilation \
|
|
||||||
"
|
"
|
||||||
NOX11="--with-gpm \
|
NOX11="--with-gpm \
|
||||||
--without-x \
|
--without-x \
|
||||||
@ -501,7 +500,6 @@ DESKTOP="--with-x \
|
|||||||
--without-libotf \
|
--without-libotf \
|
||||||
--without-m17n-flt \
|
--without-m17n-flt \
|
||||||
--without-harfbuzz \
|
--without-harfbuzz \
|
||||||
--without-native-compilation \
|
|
||||||
"
|
"
|
||||||
COMP="--disable-build-details \
|
COMP="--disable-build-details \
|
||||||
%if %{with mailutils}
|
%if %{with mailutils}
|
||||||
@ -509,6 +507,11 @@ DESKTOP="--with-x \
|
|||||||
--with-mailutils
|
--with-mailutils
|
||||||
%else
|
%else
|
||||||
--with-pop \
|
--with-pop \
|
||||||
|
%endif
|
||||||
|
%if %{with nativecomp}
|
||||||
|
--with-native-compilation \
|
||||||
|
%else
|
||||||
|
--without-native-compilation \
|
||||||
%endif
|
%endif
|
||||||
--without-hesiod \
|
--without-hesiod \
|
||||||
--with-gameuser=:games \
|
--with-gameuser=:games \
|
||||||
@ -532,27 +535,39 @@ fi
|
|||||||
ac_cv_lib_gif_EGifPutExtensionLast=yes
|
ac_cv_lib_gif_EGifPutExtensionLast=yes
|
||||||
export ac_cv_lib_gif_EGifPutExtensionLast
|
export ac_cv_lib_gif_EGifPutExtensionLast
|
||||||
|
|
||||||
|
parking=$(mktemp -p ${PWD} -d parking.XXXXXX)
|
||||||
CFLAGS="$CFLAGS -DPDMP_BASE='\"emacs-nox\"'" ./configure ${COMP} ${PREFIX} ${NOX11} ${SYS} --with-dumping=pdumper
|
CFLAGS="$CFLAGS -DPDMP_BASE='\"emacs-nox\"'" ./configure ${COMP} ${PREFIX} ${NOX11} ${SYS} --with-dumping=pdumper
|
||||||
%make_build V=1
|
%make_build V=1
|
||||||
make -C lisp/ updates compile V=1
|
make -C lisp/ updates compile V=1
|
||||||
for i in $(find site-lisp/ -name '*.el'); do
|
for i in $(find site-lisp/ -name '*.el'); do
|
||||||
EMACSLOADPATH='' src/emacs -batch -q --no-site -f batch-byte-compile $i
|
EMACSLOADPATH='' src/emacs -batch -q --no-site -f batch-byte-compile $i
|
||||||
done
|
done
|
||||||
cp src/emacs emacs-nox
|
cp -p src/emacs src/emacs-nox
|
||||||
cp src/emacs.pdmp emacs-nox.pdmp
|
cp -p src/emacs.pdmp src/emacs-nox.pdmp
|
||||||
|
find native-lisp -type d -exec mkdir -p "${parking}%{_libdir}/emacs/%{version}/{}" \;
|
||||||
|
find native-lisp -type f -exec install -m 0644 "{}" "${parking}%{_libdir}/emacs/%{version}/{}" \;
|
||||||
make distclean
|
make distclean
|
||||||
#
|
#
|
||||||
CFLAGS="$CFLAGS -DPDMP_BASE='\"emacs-x11\"'" ./configure ${COMP} ${PREFIX} ${X11} ${SYS} --with-dumping=pdumper
|
CFLAGS="$CFLAGS -DPDMP_BASE='\"emacs-x11\"'" ./configure ${COMP} ${PREFIX} ${X11} ${SYS} --with-dumping=pdumper
|
||||||
%make_build
|
%make_build
|
||||||
cp src/emacs emacs-x11
|
cp -p src/emacs src/emacs-x11
|
||||||
cp src/emacs.pdmp emacs-x11.pdmp
|
cp -p src/emacs.pdmp src/emacs-x11.pdmp
|
||||||
|
find native-lisp -type d -exec mkdir -p "${parking}%{_libdir}/emacs/%{version}/{}" \;
|
||||||
|
find native-lisp -type f -exec install -m 0644 "{}" "${parking}%{_libdir}/emacs/%{version}/{}" \;
|
||||||
make distclean
|
make distclean
|
||||||
#
|
#
|
||||||
CFLAGS="$CFLAGS -DPDMP_BASE='\"emacs-gtk\"'" ./configure ${COMP} ${PREFIX} ${GTK} ${SYS} --with-dumping=pdumper
|
CFLAGS="$CFLAGS -DPDMP_BASE='\"emacs-gtk\"'" ./configure ${COMP} ${PREFIX} ${GTK} ${SYS} --with-dumping=pdumper
|
||||||
%make_build
|
%make_build
|
||||||
cp src/emacs emacs-gtk
|
cp src/emacs src/emacs-gtk
|
||||||
cp src/emacs.pdmp emacs-gtk.pdmp
|
cp src/emacs.pdmp src/emacs-gtk.pdmp
|
||||||
find -name '*.eln'
|
find native-lisp -type d -exec mkdir -p "${parking}%{_libdir}/emacs/%{version}/{}" \;
|
||||||
|
find native-lisp -type f -exec install -m 0644 "{}" "${parking}%{_libdir}/emacs/%{version}/{}" \;
|
||||||
|
make distclean
|
||||||
|
#
|
||||||
|
CFLAGS="$CFLAGS -DPDMP_BASE='\"emacs-wayland\"'" ./configure ${COMP} ${PREFIX} ${GTK//--without-pgtk/--with-pgtk} ${SYS} --with-dumping=pdumper
|
||||||
|
%make_build
|
||||||
|
cp src/emacs src/emacs-wayland
|
||||||
|
cp src/emacs.pdmp src/emacs-wayland.pdmp
|
||||||
|
|
||||||
%if %{with tex4pdf}
|
%if %{with tex4pdf}
|
||||||
#
|
#
|
||||||
@ -567,6 +582,7 @@ rm -vf site-start.el.orig
|
|||||||
popd
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
umask 022
|
||||||
#
|
#
|
||||||
PATH=/sbin:$PATH
|
PATH=/sbin:$PATH
|
||||||
##
|
##
|
||||||
@ -577,12 +593,20 @@ mkdir -p %{buildroot}%{_bindir}
|
|||||||
mkdir -p %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}
|
mkdir -p %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}
|
||||||
make install DESTDIR=%{buildroot} systemdunitdir=%{_userunitdir}
|
make install DESTDIR=%{buildroot} systemdunitdir=%{_userunitdir}
|
||||||
rm -vf %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/*.pdmp
|
rm -vf %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/*.pdmp
|
||||||
install -m 0755 emacs-nox %{buildroot}%{_bindir}
|
pushd native-lisp/
|
||||||
install -m 0755 emacs-gtk %{buildroot}%{_bindir}
|
ln -sf ../parking.*/usr/lib64/emacs/29.1/native-lisp/* .
|
||||||
install -m 0755 emacs-x11 %{buildroot}%{_bindir}
|
popd
|
||||||
install -m 0644 emacs-nox.pdmp %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/
|
for pdmp in emacs-nox emacs-gtk emacs-x11 emacs-wayland
|
||||||
install -m 0644 emacs-gtk.pdmp %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/
|
do
|
||||||
install -m 0644 emacs-x11.pdmp %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/
|
install -m 0755 src/${pdmp} %{buildroot}%{_bindir}
|
||||||
|
install -m 0644 src/${pdmp}.pdmp %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/
|
||||||
|
ln -sf ${pdmp}.pdmp %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/${pdmp}-$(src/${pdmp} --fingerprint).pdmp
|
||||||
|
done
|
||||||
|
pushd parking.*/%{_libdir}/emacs/%{version}/
|
||||||
|
find native-lisp -type d -exec mkdir -p "%{buildroot}%{_libdir}/emacs/%{version}/{}" \;
|
||||||
|
find native-lisp -type f -exec install -m 0644 "{}" "%{buildroot}%{_libdir}/emacs/%{version}/{}" \;
|
||||||
|
popd
|
||||||
|
rm -rf parking.*
|
||||||
rm -vf %{buildroot}/usr/bin/emacs
|
rm -vf %{buildroot}/usr/bin/emacs
|
||||||
rm -vf %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/emacs.pdmp
|
rm -vf %{buildroot}%{_libexecdir}/emacs/%{version}/${configuration}/emacs.pdmp
|
||||||
install -p %{S:5} %{buildroot}/usr/bin/emacs
|
install -p %{S:5} %{buildroot}/usr/bin/emacs
|
||||||
@ -769,6 +793,10 @@ if test -e usr/share/emacs/site-lisp/auctex/font-latex.elc ; then
|
|||||||
TeX-auto-global "<none>")' -f batch-byte-compile font-latex.el > /dev/null 2>&1
|
TeX-auto-global "<none>")' -f batch-byte-compile font-latex.el > /dev/null 2>&1
|
||||||
cd $owd
|
cd $owd
|
||||||
fi
|
fi
|
||||||
|
%glib2_gsettings_schema_post
|
||||||
|
|
||||||
|
%postun -n emacs-x11
|
||||||
|
%glib2_gsettings_schema_postun
|
||||||
|
|
||||||
%if 0%{?suse_version} <= 1500
|
%if 0%{?suse_version} <= 1500
|
||||||
%post info
|
%post info
|
||||||
@ -981,7 +1009,7 @@ fi
|
|||||||
%{_datadir}/emacs/%{version}/etc/charsets/symbol.map
|
%{_datadir}/emacs/%{version}/etc/charsets/symbol.map
|
||||||
%{_datadir}/emacs/%{version}/etc/compilation.txt
|
%{_datadir}/emacs/%{version}/etc/compilation.txt
|
||||||
%{_datadir}/emacs/%{version}/etc/emacs_lldb.py
|
%{_datadir}/emacs/%{version}/etc/emacs_lldb.py
|
||||||
%{_datadir}/emacs/%{version}/etc/org.gnu.emacs.defaults.gschema.xml
|
%{_datadir}/emacs/%{version}/etc/org.gnu.emacs.defaults.gschema.*
|
||||||
%dir %{_datadir}/emacs/%{version}/etc/org/
|
%dir %{_datadir}/emacs/%{version}/etc/org/
|
||||||
%dir %{_datadir}/emacs/%{version}/etc/org/csl/
|
%dir %{_datadir}/emacs/%{version}/etc/org/csl/
|
||||||
%{_datadir}/emacs/%{version}/etc/org/csl/README
|
%{_datadir}/emacs/%{version}/etc/org/csl/README
|
||||||
@ -3437,17 +3465,20 @@ fi
|
|||||||
%files -n emacs-nox
|
%files -n emacs-nox
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%{_bindir}/emacs-nox
|
%{_bindir}/emacs-nox
|
||||||
%{_libexecdir}/emacs/%{version}/*-suse-linux*/emacs-nox.pdmp
|
%{_libexecdir}/emacs/%{version}/*-suse-linux*/emacs-nox*.pdmp
|
||||||
|
|
||||||
%files -n emacs-x11
|
%files -n emacs-x11
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%{_bindir}/emacs-x11
|
%{_bindir}/emacs-x11
|
||||||
%{_bindir}/emacs-gtk
|
%{_bindir}/emacs-gtk
|
||||||
%{_libexecdir}/emacs/%{version}/*-suse-linux*/emacs-x11.pdmp
|
%{_bindir}/emacs-wayland
|
||||||
%{_libexecdir}/emacs/%{version}/*-suse-linux*/emacs-gtk.pdmp
|
%{_libexecdir}/emacs/%{version}/*-suse-linux*/emacs-x11*.pdmp
|
||||||
|
%{_libexecdir}/emacs/%{version}/*-suse-linux*/emacs-gtk*.pdmp
|
||||||
|
%{_libexecdir}/emacs/%{version}/*-suse-linux*/emacs-wayland*.pdmp
|
||||||
%dir %{appDefaultsDir}
|
%dir %{appDefaultsDir}
|
||||||
%{appDefaultsFile}
|
%{appDefaultsFile}
|
||||||
%{_datadir}/applications/emacs*.desktop
|
%{_datadir}/applications/emacs*.desktop
|
||||||
|
%{_datadir}/glib-2.0/schemas/org.gnu.emacs.defaults.gschema.xml
|
||||||
%{_datadir}/icons/hicolor/128x128/apps/emacs.png
|
%{_datadir}/icons/hicolor/128x128/apps/emacs.png
|
||||||
%{_datadir}/icons/hicolor/16x16/apps/emacs.png
|
%{_datadir}/icons/hicolor/16x16/apps/emacs.png
|
||||||
%{_datadir}/icons/hicolor/24x24/apps/emacs.png
|
%{_datadir}/icons/hicolor/24x24/apps/emacs.png
|
||||||
|
59
pdump.patch
59
pdump.patch
@ -1,15 +1,17 @@
|
|||||||
From: Andreas Schwab
|
From 54823555425ffabe31b42672b1894d0e3ff1b018 Mon Sep 17 00:00:00 2001
|
||||||
Port to GNU Emacs 29.1: Werner Fink
|
From: =?UTF-8?q?Bj=C3=B6rn=20Bidar?= <bjorn.bidar@thaodan.de>
|
||||||
|
Date: Fri, 10 Feb 2023 23:31:35 +0200
|
||||||
|
Subject: [PATCH] Allow to override pdmp base
|
||||||
|
|
||||||
Index: src/emacs.c
|
|
||||||
===================================================================
|
|
||||||
---
|
---
|
||||||
src/emacs.c | 27 +++++++++++++++++++++++++++
|
src/emacs.c | 8 ++++++++
|
||||||
1 file changed, 27 insertions(+)
|
1 file changed, 8 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/emacs.c b/src/emacs.c
|
||||||
|
index 687b8c7f81f0..2d6bfe07d813 100644
|
||||||
--- src/emacs.c
|
--- src/emacs.c
|
||||||
+++ src/emacs.c 2023-08-07 07:30:34.317996305 +0000
|
+++ src/emacs.c
|
||||||
@@ -867,12 +867,16 @@ load_pdump (int argc, char **argv)
|
@@ -920,11 +920,15 @@ load_pdump (int argc, char **argv, char *dump_file)
|
||||||
NULL
|
NULL
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
@ -21,38 +23,19 @@ Index: src/emacs.c
|
|||||||
"Emacs"
|
"Emacs"
|
||||||
#else
|
#else
|
||||||
"emacs"
|
"emacs"
|
||||||
#endif
|
|
||||||
+#endif
|
+#endif
|
||||||
|
#endif
|
||||||
;
|
;
|
||||||
|
|
||||||
/* TODO: maybe more thoroughly scrub process environment in order to
|
@@ -1065,7 +1069,11 @@ load_pdump (int argc, char **argv, char *dump_file)
|
||||||
@@ -957,6 +961,29 @@ load_pdump (int argc, char **argv)
|
if (IS_DIRECTORY_SEP (*p))
|
||||||
path_exec = ns_relocate (path_exec);
|
last_sep = p;
|
||||||
#endif
|
}
|
||||||
|
|
||||||
+#ifdef PDMP_BASE
|
+#ifdef PDMP_BASE
|
||||||
+ if (emacs_executable && *emacs_executable)
|
+ argv0_base = PDMP_BASE;
|
||||||
+ {
|
+#else
|
||||||
+ needed = (strlen (path_exec)
|
argv0_base = last_sep ? last_sep + 1 : argv[0];
|
||||||
+ + 1
|
|
||||||
+ + strlen (argv0_base)
|
|
||||||
+ + 1
|
|
||||||
+ + strlen (suffix)
|
|
||||||
+ + 1);
|
|
||||||
+ if (bufsize < needed)
|
|
||||||
+ {
|
|
||||||
+ xfree (dump_file);
|
|
||||||
+ dump_file = xpalloc (NULL, &bufsize, needed - bufsize, -1, 1);
|
|
||||||
+ }
|
|
||||||
+ sprintf (dump_file, "%s%c%s%s",
|
|
||||||
+ path_exec, DIRECTORY_SEP, argv0_base, suffix);
|
|
||||||
+ result = pdumper_load (dump_file, emacs_executable);
|
|
||||||
+
|
|
||||||
+ if (result == PDUMPER_LOAD_SUCCESS)
|
|
||||||
+ goto out;
|
|
||||||
+ }
|
|
||||||
+#endif
|
+#endif
|
||||||
+
|
ptrdiff_t needed = (strlen (path_exec)
|
||||||
/* Look for "emacs-FINGERPRINT.pdmp" in PATH_EXEC. We hardcode
|
+ 1
|
||||||
"emacs" in "emacs-FINGERPRINT.pdmp" so that the Emacs binary
|
+ strlen (argv0_base)
|
||||||
still works if the user copies and renames it. */
|
|
||||||
|
Loading…
Reference in New Issue
Block a user