diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-01-26 16:44:48 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-01-26 16:44:48 +0000 |
commit | c6f218c2a1e4d7dcc0c62e9f12e0f8ee11c94e8d (patch) | |
tree | e0e922585bcff77c2adbb60037b98cc0833dd25c | |
parent | Make gameuser configurable. (diff) | |
download | emacs-patches-c6f218c2a1e4d7dcc0c62e9f12e0f8ee11c94e8d.tar.gz emacs-patches-c6f218c2a1e4d7dcc0c62e9f12e0f8ee11c94e8d.tar.bz2 emacs-patches-c6f218c2a1e4d7dcc0c62e9f12e0f8ee11c94e8d.zip |
Patches for Prefix.emacs-23.2-patches-3
-rw-r--r-- | emacs/23.2/03_all_gnu-linux-crt-dir.patch | 22 | ||||
-rw-r--r-- | emacs/23.2/04_all_ns-appdirs.patch | 50 |
2 files changed, 72 insertions, 0 deletions
diff --git a/emacs/23.2/03_all_gnu-linux-crt-dir.patch b/emacs/23.2/03_all_gnu-linux-crt-dir.patch new file mode 100644 index 0000000..fb06459 --- /dev/null +++ b/emacs/23.2/03_all_gnu-linux-crt-dir.patch @@ -0,0 +1,22 @@ +http://bugs.gentoo.org/350532 + +--- emacs-23.2-orig/src/s/gnu-linux.h ++++ emacs-23.2/src/s/gnu-linux.h +@@ -168,7 +168,7 @@ + /* Ask GCC where to find libgcc.a. */ + #define LIB_GCC `$(CC) $(C_SWITCH_X_SITE) -print-libgcc-file-name` + +-#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o ++#define START_FILES pre-crt0.o $(CRT_DIR)/crt1.o $(CRT_DIR)/crti.o + + /* Here is how to find X Windows. LD_SWITCH_X_SITE_AUX gives an -R option + says where to find X windows at run time. */ +@@ -198,7 +198,7 @@ + #define LIBS_DEBUG + #undef LIB_GCC + #define LIB_GCC +-#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtn.o ++#define LIB_STANDARD -lgcc -lc -lgcc $(CRT_DIR)/crtn.o + + /* Don't use -g in test compiles in configure. + This is so we will use the same shared libs for that linking diff --git a/emacs/23.2/04_all_ns-appdirs.patch b/emacs/23.2/04_all_ns-appdirs.patch new file mode 100644 index 0000000..07113ff --- /dev/null +++ b/emacs/23.2/04_all_ns-appdirs.patch @@ -0,0 +1,50 @@ +http://bugs.gentoo.org/268793 + +--- emacs-23.2-orig/configure.in ++++ emacs-23.2/configure.in +@@ -1417,10 +1417,10 @@ + window_system=nextstep + with_xft=no + # set up packaging dirs +- exec_prefix=${ns_appbindir} +- libexecdir=${ns_appbindir}/libexec + if test "${EN_NS_SELF_CONTAINED}" = yes; then + prefix=${ns_appresdir} ++ exec_prefix=${ns_appbindir} ++ libexecdir=${ns_appbindir}/libexec + fi + fi + CFLAGS="$tmp_CFLAGS" +--- emacs-23.2-orig/leim/Makefile.in ++++ emacs-23.2/leim/Makefile.in +@@ -263,11 +263,6 @@ + [ -n "$${installuser}" ] && break ; \ + done ; \ + find ${INSTALLDIR} -exec chown $${installuser} '{}' ';' +- if [ "${ns_appresdir}" != "" ]; then \ +- ( cd ${ns_appresdir} ; \ +- if test -d share/emacs ; then dir=share/emacs/*/*; $(MV_DIRS); fi;\ +- rm -fr share ) ; \ +- else true ; fi + + clean mostlyclean: + rm -f ${TIT-MISC} ${TIT-MISC:.elc=.el} \ +--- emacs-23.2-orig/Makefile.in ++++ emacs-23.2/Makefile.in +@@ -424,16 +424,6 @@ + ${INSTALL_DATA} lib-src/$$f $(DESTDIR)${archlibdir}/$$f; \ + else true; fi ; \ + done +- if test "${ns_appdir}" != ""; then \ +- ( cd ${ns_appresdir} ; \ +- if test -d share/emacs ; then dir=share/emacs/*/*; $(MV_DIRS); fi;\ +- if test -d share/info ; then dir=share/info; $(MV_DIRS) ; fi ; \ +- rm -fr share ) ; \ +- ( cd ${ns_appbindir}/libexec ; dir=emacs/*/*/* ; $(MV_DIRS); \ +- rm -fr emacs ) ; \ +- ( cd ${ns_appbindir}/bin ; rm -f emacs emacs-23* ; \ +- ln -sf ../libexec/* .) ; \ +- else true ; fi + + ## http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01672.html + ## Needs to be the user running install, so configure can't set it. |