Fix NS native compilation builds
* Makefile.in (ns_applibexecdir): (ns_applibdir): (ns_appdir): New variables. (.PHONY): Include new rule. (epaths-force-ns-self-contained): Remove the app bundle directory from all paths. * configure.ac (NS_SELF_CONTAINED): Set the default site-lisp directory instead of hard-coding it in the ObjC code, and use the new epaths generating make rule. * src/callproc.c (init_callproc_1): (init_callproc): Remove all the NS specific code as the special cases are now handled by decode_env_path. * src/emacs.c (load_pdump): (decode_env_path): Use ns_relocate to find the correct directory after relocation. * src/lread.c (load_path_default): Remove all the NS specific code as the special cases are now handled by decode_env_path. * src/nsterm.h: Update function definitions. * src/nsterm.m (ns_etc_directory): (ns_exec_path): (ns_load_path): Remove functions that are no longer needed. (ns_relocate): New function to calculate paths within the NS app bundle. * nextstep/Makefile.in (ns_applibexecdir): New variable, and update anything relying on the libexec location.
This commit is contained in:
@@ -36,6 +36,7 @@ MKDIR_P = @MKDIR_P@
|
||||
ns_appdir = @ns_appdir@
|
||||
## GNUstep: ns_appdir; macOS: ns_appdir/Contents/MacOS
|
||||
ns_appbindir = @ns_appbindir@
|
||||
ns_applibexecdir = @ns_applibexecdir@
|
||||
## GNUstep/Emacs.base or Cocoa/Emacs.base.
|
||||
ns_appsrc = @ns_appsrc@
|
||||
## GNUstep: GNUstep/Emacs.base/Resources/Info-gnustep.plist
|
||||
@@ -44,7 +45,7 @@ ns_check_file = @ns_appdir@/@ns_check_file@
|
||||
|
||||
.PHONY: all
|
||||
|
||||
all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_appbindir}/Emacs.pdmp
|
||||
all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_applibexecdir}/Emacs.pdmp
|
||||
|
||||
${ns_check_file} ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc}
|
||||
rm -rf ${ns_appdir}
|
||||
@@ -63,8 +64,10 @@ ${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT}
|
||||
${MKDIR_P} ${ns_appbindir}
|
||||
cp -f ../src/emacs${EXEEXT} $@
|
||||
|
||||
${ns_appbindir}/Emacs.pdmp: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT}.pdmp
|
||||
${MKDIR_P} ${ns_appbindir}
|
||||
# FIXME: Don't install the dump file into the app bundle when
|
||||
# self-contained install is disabled.
|
||||
${ns_applibexecdir}/Emacs.pdmp: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT}.pdmp
|
||||
${MKDIR_P} ${ns_applibexecdir}
|
||||
cp -f ../src/emacs${EXEEXT}.pdmp $@
|
||||
|
||||
.PHONY: FORCE
|
||||
@@ -85,9 +88,8 @@ links: ../src/emacs${EXEEXT}
|
||||
ln -s $(top_srcdir_abs)/info ${ns_appdir}/Contents/Resources
|
||||
${MKDIR_P} ${ns_appbindir}
|
||||
ln -s $(abs_top_builddir)/src/emacs${EXEEXT} ${ns_appbindir}/Emacs
|
||||
ln -s $(abs_top_builddir)/src/emacs${EXEEXT}.pdmp ${ns_appbindir}/Emacs.pdmp
|
||||
ln -s $(abs_top_builddir)/lib-src ${ns_appbindir}/bin
|
||||
ln -s $(abs_top_builddir)/lib-src ${ns_appbindir}/libexec
|
||||
ln -s $(abs_top_builddir)/lib-src ${ns_applibexecdir}
|
||||
${MKDIR_P} ${ns_appdir}/Contents/Resources/etc
|
||||
for f in $(shell cd $(top_srcdir_abs)/etc; ls); do ln -s $(top_srcdir_abs)/etc/$$f ${ns_appdir}/Contents/Resources/etc; done
|
||||
ln -s $(abs_top_builddir)/etc/DOC ${ns_appdir}/Contents/Resources/etc
|
||||
|
||||
Reference in New Issue
Block a user