From 64d751f47f8ffd89ff4128c3e9e1c0c874de810e59c2d2676a131b48d04dad91 Mon Sep 17 00:00:00 2001 From: "Dr. Werner Fink" Date: Mon, 17 Dec 2012 15:51:29 +0000 Subject: [PATCH] Accepting request 145536 from home:AndreasSchwab:ff - Remove obsolete patches - Don't use obsolete mouse-sel - Avoid calling autoconf - Avoid warning about duplicate files OBS-URL: https://build.opensuse.org/request/show/145536 OBS-URL: https://build.opensuse.org/package/show/editors/emacs?expand=0&rev=104 --- emacs-24.1-ppc64.patch | 36 -- emacs-24.1-sendmail-path.patch | 17 - emacs-24.1-tinfo.dif | 46 +- emacs-24.1.dif | 118 +--- emacs-24.2-configure.patch | 1034 -------------------------------- emacs.changes | 8 + emacs.spec | 138 +++-- site-lisp.tar.bz2 | 4 +- 8 files changed, 131 insertions(+), 1270 deletions(-) delete mode 100644 emacs-24.1-ppc64.patch delete mode 100644 emacs-24.1-sendmail-path.patch delete mode 100644 emacs-24.2-configure.patch diff --git a/emacs-24.1-ppc64.patch b/emacs-24.1-ppc64.patch deleted file mode 100644 index e546517..0000000 --- a/emacs-24.1-ppc64.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- configure.in -+++ configure.in 2012-06-26 16:30:51.496510306 +0000 -@@ -420,7 +420,8 @@ case "${canonical}" in - case ${canonical} in - alpha*) machine=alpha ;; - s390x-*) machine=ibms390x ;; -- powerpc*) machine=macppc ;; -+ powerpc*|ppc*) -+ machine=macppc ;; - sparc*) machine=sparc ;; - ia64*) machine=ia64 ;; - m68k*) machine=m68k ;; -@@ -1050,7 +1051,7 @@ if test "x$crt_files" != x; then - test -e /usr/lib64/crtn.o && CRT_DIR=/usr/lib64 - ;; - -- powerpc64-*-linux-gnu* | sparc64-*-linux-gnu*) CRT_DIR=/usr/lib64 ;; -+ powerpc64-*-linux-gnu* | ppc64-*-linux-gnu* | sparc64-*-linux-gnu*) CRT_DIR=/usr/lib64 ;; - esac - - case "$opsys" in ---- src/m/macppc.h -+++ src/m/macppc.h 2012-06-26 16:31:30.584509749 +0000 -@@ -17,6 +17,12 @@ GNU General Public License for more deta - You should have received a copy of the GNU General Public License - along with GNU Emacs. If not, see . */ - -+#ifdef __powerpc64__ -+#ifndef _ARCH_PPC64 -+#define _ARCH_PPC64 -+#endif -+#endif -+ - #ifdef _ARCH_PPC64 - #ifndef _LP64 - #define _LP64 diff --git a/emacs-24.1-sendmail-path.patch b/emacs-24.1-sendmail-path.patch deleted file mode 100644 index f6ddb71..0000000 --- a/emacs-24.1-sendmail-path.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- lisp/mail/sendmail.el -+++ lisp/mail/sendmail.el 2012-06-26 17:16:27.176010331 +0000 -@@ -42,13 +42,7 @@ - :group 'sendmail - :version "22.1") - --(defcustom sendmail-program -- (or (executable-find "sendmail") -- (cond -- ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") -- ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") -- ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") -- (t "sendmail"))) -+(defcustom sendmail-program "/usr/sbin/sendmail" - "Program used to send messages." - :version "24.1" ; add executable-find, remove fakemail - :group 'mail diff --git a/emacs-24.1-tinfo.dif b/emacs-24.1-tinfo.dif index 4372102..c250952 100644 --- a/emacs-24.1-tinfo.dif +++ b/emacs-24.1-tinfo.dif @@ -1,5 +1,25 @@ +--- configure ++++ configure +@@ -14294,7 +14294,7 @@ $as_echo_n "checking for library containing tputs... " >&6; } + + # Maybe curses should be tried earlier? + # See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9736#35 +-for tputs_library in '' ncurses terminfo termcap curses; do ++for tputs_library in '' tinfo ncurses terminfo termcap curses; do + OLIBS=$LIBS + if test -z "$tputs_library"; then + LIBS_TERMCAP= +@@ -14386,7 +14386,7 @@ case "$opsys" in + ## option to use it. + darwin|gnu*) + ## (HAVE_LIBNCURSES was not always true, but is since 2010-03-18.) +- if test "x$HAVE_LIBNCURSES" = "xyes"; then ++ if test -z "$LIBS_TERMCAP" && test "x$HAVE_LIBNCURSES" = "xyes"; then + TERMINFO=yes + LIBS_TERMCAP="-lncurses" + fi --- configure.in -+++ configure.in 2012-06-26 17:32:44.272010723 +0000 ++++ configure.in @@ -2803,7 +2803,7 @@ AC_DEFUN([tputs_link_source], [ ]) # Maybe curses should be tried earlier? @@ -9,24 +29,12 @@ OLIBS=$LIBS if test -z "$tputs_library"; then LIBS_TERMCAP= -@@ -2855,7 +2855,7 @@ case "$opsys" in +@@ -2853,7 +2853,7 @@ case "$opsys" in + ## option to use it. + darwin|gnu*) ## (HAVE_LIBNCURSES was not always true, but is since 2010-03-18.) - if test "x$HAVE_LIBNCURSES" = "xyes"; then +- if test "x$HAVE_LIBNCURSES" = "xyes"; then ++ if test -z "$LIBS_TERMCAP" && test "x$HAVE_LIBNCURSES" = "xyes"; then TERMINFO=yes -- LIBS_TERMCAP="-lncurses" -+ LIBS_TERMCAP="-ltinfo" + LIBS_TERMCAP="-lncurses" fi - ;; - ---- src/config.in -+++ src/config.in 2011-11-22 14:34:49.000000000 +0000 -@@ -450,6 +450,9 @@ along with GNU Emacs. If not, see ---- lib-src/vcdiff -+++ lib-src/vcdiff 2009-08-12 13:22:18.000000000 +0000 -@@ -76,6 +76,8 @@ esac - - - rev1= rev2= status=0 -+rev1=/tmp/getaXXXXXXXX -+rev2=/tmp/getbXXXXXXXX - trap 'status=2; exit' 1 2 13 15 - trap 'rm -f $rev1 $rev2 || status=2; exit $status' 0 - -@@ -86,14 +88,14 @@ do - case $f in - s.* | */s.*) - if -- rev1=`mktemp /tmp/geta.XXXXXXXX` -+ rev1=`mktemp ${rev1}` || exit 1 - sccs get -s -p -k $sid1 "$f" > $rev1 && - case $sid2 in - '') - workfile=`expr " /$f" : '.*/s.\(.*\)'` - ;; - *) -- rev2=`mktemp /tmp/getb.XXXXXXXX` -+ rev2=`mktemp ${rev2}` || exit 1 - sccs get -s -p -k $sid2 "$f" > $rev2 - workfile=$rev2 - esac --- lisp/cmuscheme.el +++ lisp/cmuscheme.el 2009-08-12 13:29:47.000000000 +0000 @@ -240,7 +240,8 @@ is run). @@ -227,30 +202,6 @@ (set-buffer (apply 'make-comint "scheme" (car cmdlist) (scheme-start-file (car cmdlist)) (cdr cmdlist))) (inferior-scheme-mode))) ---- lisp/dired.el -+++ lisp/dired.el 2012-06-27 10:43:26.472010441 +0000 -@@ -71,7 +71,8 @@ If nil, `dired-listing-switches' is used - (defcustom dired-chown-program - (purecopy (cond ((executable-find "chown") "chown") - ((file-executable-p "/usr/sbin/chown") "/usr/sbin/chown") -- ((file-executable-p "/etc/chown") "/etc/chown") -+ ((file-executable-p "/usr/bin/chown") "/usr/bin/chown") -+ ((file-executable-p "/bin/chown") "/bin/chown") - (t "chown"))) - "Name of chown command (usually `chown')." - :group 'dired ---- lisp/help.el -+++ lisp/help.el 2012-06-27 10:44:38.572010511 +0000 -@@ -45,6 +45,9 @@ - (defvar help-window-point-marker (make-marker) - "Marker to override default `window-point' in help windows.") - -+(defvar help-mode-hook nil -+ "Normal hook run when entering Help mode.") -+ - (defvar help-map - (let ((map (make-sparse-keymap))) - (define-key map (char-to-string help-char) 'help-for-help) --- lisp/international/mule-cmds.el +++ lisp/international/mule-cmds.el 2010-10-18 14:06:48.000000000 +0000 @@ -41,6 +41,7 @@ @@ -823,17 +774,6 @@ +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Ende von locale.el ---- src/config.in -+++ src/config.in 2012-06-27 11:12:06.416510145 +0000 -@@ -1348,6 +1348,8 @@ along with GNU Emacs. If not, see --- src/lisp.mk +++ src/lisp.mk 2012-06-27 11:10:56.532510062 +0000 @@ -142,6 +142,8 @@ lisp = \ @@ -845,31 +785,3 @@ $(lispsource)/disp-table.elc \ $(lispsource)/dos-w32.elc \ $(lispsource)/w32-fns.elc \ ---- src/s/gnu-linux.h -+++ src/s/gnu-linux.h 2012-06-27 11:35:27.128011252 +0000 -@@ -169,4 +169,15 @@ along with GNU Emacs. If not, see diff --git a/emacs-24.2-configure.patch b/emacs-24.2-configure.patch deleted file mode 100644 index 1433db1..0000000 --- a/emacs-24.2-configure.patch +++ /dev/null @@ -1,1034 +0,0 @@ ---- configure -+++ configure 2012-06-28 08:41:35.273621844 +0000 -@@ -1,11 +1,9 @@ - #! /bin/sh - # Guess values for system-dependent variables and create Makefiles. --# Generated by GNU Autoconf 2.68 for emacs 24.2. -+# Generated by GNU Autoconf 2.69 for emacs 24.2. - # - # --# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, --# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software --# Foundation, Inc. -+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. - # - # - # This configure script is free software; the Free Software Foundation -@@ -134,6 +132,31 @@ export LANGUAGE - # CDPATH. - (unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -+# Use a proper internal environment variable to ensure we don't fall -+ # into an infinite loop, continuously re-executing ourselves. -+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then -+ _as_can_reexec=no; export _as_can_reexec; -+ # We cannot yet assume a decent shell, so we have to provide a -+# neutralization value for shells without unset; and this also -+# works around shells that cannot unset nonexistent variables. -+# Preserve -v and -x to the replacement shell. -+BASH_ENV=/dev/null -+ENV=/dev/null -+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -+case $- in # (((( -+ *v*x* | *x*v* ) as_opts=-vx ;; -+ *v* ) as_opts=-v ;; -+ *x* ) as_opts=-x ;; -+ * ) as_opts= ;; -+esac -+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -+# Admittedly, this is quite paranoid, since all the known shells bail -+# out after a failed `exec'. -+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -+as_fn_exit 255 -+ fi -+ # We don't want this to propagate to other subprocesses. -+ { _as_can_reexec=; unset _as_can_reexec;} - if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : - emulate sh -@@ -167,7 +190,8 @@ if ( set x; as_fn_ret_success y && test - else - exitcode=1; echo positional parameters were not saved. - fi --test x\$exitcode = x0 || exit 1" -+test x\$exitcode = x0 || exit 1 -+test -x / || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && -@@ -212,21 +236,25 @@ IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : -- # We cannot yet assume a decent shell, so we have to provide a -- # neutralization value for shells without unset; and this also -- # works around shells that cannot unset nonexistent variables. -- # Preserve -v and -x to the replacement shell. -- BASH_ENV=/dev/null -- ENV=/dev/null -- (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -- export CONFIG_SHELL -- case $- in # (((( -- *v*x* | *x*v* ) as_opts=-vx ;; -- *v* ) as_opts=-v ;; -- *x* ) as_opts=-x ;; -- * ) as_opts= ;; -- esac -- exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} -+ export CONFIG_SHELL -+ # We cannot yet assume a decent shell, so we have to provide a -+# neutralization value for shells without unset; and this also -+# works around shells that cannot unset nonexistent variables. -+# Preserve -v and -x to the replacement shell. -+BASH_ENV=/dev/null -+ENV=/dev/null -+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -+case $- in # (((( -+ *v*x* | *x*v* ) as_opts=-vx ;; -+ *v* ) as_opts=-v ;; -+ *x* ) as_opts=-x ;; -+ * ) as_opts= ;; -+esac -+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -+# Admittedly, this is quite paranoid, since all the known shells bail -+# out after a failed `exec'. -+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -+exit 255 - fi - - if test x$as_have_required = xno; then : -@@ -328,6 +356,14 @@ $as_echo X"$as_dir" | - - - } # as_fn_mkdir_p -+ -+# as_fn_executable_p FILE -+# ----------------------- -+# Test if FILE is an executable regular file. -+as_fn_executable_p () -+{ -+ test -f "$1" && test -x "$1" -+} # as_fn_executable_p - # as_fn_append VAR VALUE - # ---------------------- - # Append the text in VALUE to the end of the definition contained in VAR. Take -@@ -449,6 +485,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - -+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have -+ # already done that, so ensure we don't try to do so again and fall -+ # in an infinite loop. This has already happened in practice. -+ _as_can_reexec=no; export _as_can_reexec - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). -@@ -483,16 +523,16 @@ if (echo >conf$$.file) 2>/dev/null; then - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. -- # In both cases, we have to default to `cp -p'. -+ # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || -- as_ln_s='cp -p' -+ as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else -- as_ln_s='cp -p' -+ as_ln_s='cp -pR' - fi - else -- as_ln_s='cp -p' -+ as_ln_s='cp -pR' - fi - rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file - rmdir conf$$.dir 2>/dev/null -@@ -504,28 +544,8 @@ else - as_mkdir_p=false - fi - --if test -x / >/dev/null 2>&1; then -- as_test_x='test -x' --else -- if ls -dL / >/dev/null 2>&1; then -- as_ls_L_option=L -- else -- as_ls_L_option= -- fi -- as_test_x=' -- eval sh -c '\'' -- if test -d "$1"; then -- test -d "$1/."; -- else -- case $1 in #( -- -*)set "./$1";; -- esac; -- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( -- ???[sx]*):;;*)false;;esac;fi -- '\'' sh -- ' --fi --as_executable_p=$as_test_x -+as_test_x='test -x' -+as_executable_p=as_fn_executable_p - - # Sed expression to map a string onto a valid CPP name. - as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" -@@ -1809,8 +1829,6 @@ target=$target_alias - if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe -- $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. -- If a cross compiler is detected then cross compile mode will be used" >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -@@ -2134,9 +2152,9 @@ test -n "$ac_init_help" && exit $ac_stat - if $ac_init_version; then - cat <<\_ACEOF - emacs configure 24.2 --generated by GNU Autoconf 2.68 -+generated by GNU Autoconf 2.69 - --Copyright (C) 2010 Free Software Foundation, Inc. -+Copyright (C) 2012 Free Software Foundation, Inc. - This configure script is free software; the Free Software Foundation - gives unlimited permission to copy, distribute and modify it. - _ACEOF -@@ -2409,7 +2427,7 @@ $as_echo "$ac_try_echo"; } >&5 - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || -- $as_test_x conftest$ac_exeext -+ test -x conftest$ac_exeext - }; then : - ac_retval=0 - else -@@ -2698,7 +2716,8 @@ int - main () - { - static int test_array [1 - 2 * !(($2) >= 0)]; --test_array [0] = 0 -+test_array [0] = 0; -+return test_array [0]; - - ; - return 0; -@@ -2714,7 +2733,8 @@ int - main () - { - static int test_array [1 - 2 * !(($2) <= $ac_mid)]; --test_array [0] = 0 -+test_array [0] = 0; -+return test_array [0]; - - ; - return 0; -@@ -2740,7 +2760,8 @@ int - main () - { - static int test_array [1 - 2 * !(($2) < 0)]; --test_array [0] = 0 -+test_array [0] = 0; -+return test_array [0]; - - ; - return 0; -@@ -2756,7 +2777,8 @@ int - main () - { - static int test_array [1 - 2 * !(($2) >= $ac_mid)]; --test_array [0] = 0 -+test_array [0] = 0; -+return test_array [0]; - - ; - return 0; -@@ -2790,7 +2812,8 @@ int - main () - { - static int test_array [1 - 2 * !(($2) <= $ac_mid)]; --test_array [0] = 0 -+test_array [0] = 0; -+return test_array [0]; - - ; - return 0; -@@ -2863,7 +2886,7 @@ This file contains any messages produced - running configure, to aid debugging if configure makes a mistake. - - It was created by emacs $as_me 24.2, which was --generated by GNU Autoconf 2.68. Invocation command line was -+generated by GNU Autoconf 2.69. Invocation command line was - - $ $0 $@ - -@@ -3302,7 +3325,7 @@ case $as_dir/ in #(( - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. -@@ -3471,7 +3494,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -3511,7 +3534,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -3562,7 +3585,7 @@ do - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do -- { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue -+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ -@@ -3616,7 +3639,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AWK="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -4426,7 +4449,8 @@ case "${canonical}" in - case ${canonical} in - alpha*) machine=alpha ;; - s390x-*) machine=ibms390x ;; -- powerpc*) machine=macppc ;; -+ powerpc*|ppc*) -+ machine=macppc ;; - sparc*) machine=sparc ;; - ia64*) machine=ia64 ;; - m68k*) machine=m68k ;; -@@ -4660,7 +4684,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -4700,7 +4724,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -4753,7 +4777,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -4794,7 +4818,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue -@@ -4852,7 +4876,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -4896,7 +4920,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -5342,8 +5366,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ - /* end confdefs.h. */ - #include - #include --#include --#include -+struct stat; - /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ - struct buf { int x; }; - FILE * (*rcsopen) (struct buf *, struct stat *, int); -@@ -5902,7 +5925,7 @@ do - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" -- { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue -+ as_fn_executable_p "$ac_path_GREP" || continue - # Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP - case `"$ac_path_GREP" --version 2>&1` in -@@ -5968,7 +5991,7 @@ do - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" -- { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue -+ as_fn_executable_p "$ac_path_EGREP" || continue - # Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP - case `"$ac_path_EGREP" --version 2>&1` in -@@ -6068,7 +6091,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AR="${ac_tool_prefix}ar" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -6108,7 +6131,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_AR="ar" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -6175,7 +6198,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -6215,7 +6238,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -6478,9 +6501,9 @@ else - if test "$GCC" != yes; then - ac_save_CC=$CC - while :; do -- # IRIX 6.2 and later do not support large files by default, -- # so use the C compiler's -n32 option if that helps. -- cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+ # IRIX 6.2 and later do not support large files by default, -+ # so use the C compiler's -n32 option if that helps. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext - /* end confdefs.h. */ - #include - /* Check that off_t can represent 2**63 - 1 correctly. -@@ -6489,8 +6512,8 @@ else - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -6499,16 +6522,16 @@ main () - return 0; - } - _ACEOF -- if ac_fn_c_try_compile "$LINENO"; then : -+ if ac_fn_c_try_compile "$LINENO"; then : - break - fi - rm -f core conftest.err conftest.$ac_objext -- CC="$CC -n32" -- if ac_fn_c_try_compile "$LINENO"; then : -+ CC="$CC -n32" -+ if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_sys_largefile_CC=' -n32'; break - fi - rm -f core conftest.err conftest.$ac_objext -- break -+ break - done - CC=$ac_save_CC - rm -f conftest.$ac_ext -@@ -6535,8 +6558,8 @@ else - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -6559,8 +6582,8 @@ rm -f core conftest.err conftest.$ac_obj - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -6604,8 +6627,8 @@ else - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -6628,8 +6651,8 @@ rm -f core conftest.err conftest.$ac_obj - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -6812,7 +6835,7 @@ main () - return 0; - } - _ACEOF --for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -xc99=all -qlanglvl=extc99 -+for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99 - do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : -@@ -6852,8 +6875,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ - /* end confdefs.h. */ - #include - #include --#include --#include -+struct stat; - /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ - struct buf { int x; }; - FILE * (*rcsopen) (struct buf *, struct stat *, int); -@@ -7342,7 +7364,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -7382,7 +7404,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -7459,7 +7481,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_INSTALL_INFO="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -7499,7 +7521,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_INSTALL_INFO="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -7539,7 +7561,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_INSTALL_INFO="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -7580,7 +7602,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GZIP_PROG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -7623,7 +7645,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MAKEINFO="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -7895,9 +7917,9 @@ else - if test "$GCC" != yes; then - ac_save_CC=$CC - while :; do -- # IRIX 6.2 and later do not support large files by default, -- # so use the C compiler's -n32 option if that helps. -- cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+ # IRIX 6.2 and later do not support large files by default, -+ # so use the C compiler's -n32 option if that helps. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext - /* end confdefs.h. */ - #include - /* Check that off_t can represent 2**63 - 1 correctly. -@@ -7906,8 +7928,8 @@ else - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -7916,16 +7938,16 @@ main () - return 0; - } - _ACEOF -- if ac_fn_c_try_compile "$LINENO"; then : -+ if ac_fn_c_try_compile "$LINENO"; then : - break - fi - rm -f core conftest.err conftest.$ac_objext -- CC="$CC -n32" -- if ac_fn_c_try_compile "$LINENO"; then : -+ CC="$CC -n32" -+ if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_sys_largefile_CC=' -n32'; break - fi - rm -f core conftest.err conftest.$ac_objext -- break -+ break - done - CC=$ac_save_CC - rm -f conftest.$ac_ext -@@ -7952,8 +7974,8 @@ else - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -7976,8 +7998,8 @@ rm -f core conftest.err conftest.$ac_obj - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -8021,8 +8043,8 @@ else - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -8045,8 +8067,8 @@ rm -f core conftest.err conftest.$ac_obj - incorrectly reject 9223372036854775807. */ - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -- && LARGE_OFF_T % 2147483647 == 1) -- ? 1 : -1]; -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; - int - main () - { -@@ -8145,7 +8167,7 @@ if test "x$crt_files" != x; then - test -e /usr/lib64/crtn.o && CRT_DIR=/usr/lib64 - ;; - -- powerpc64-*-linux-gnu* | sparc64-*-linux-gnu*) CRT_DIR=/usr/lib64 ;; -+ powerpc64-*-linux-gnu* | ppc64-*-linux-gnu* | sparc64-*-linux-gnu*) CRT_DIR=/usr/lib64 ;; - esac - - case "$opsys" in -@@ -8308,7 +8330,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -8994,11 +9016,11 @@ else - int - main () - { --/* FIXME: Include the comments suggested by Paul. */ -+ - #ifndef __cplusplus -- /* Ultrix mips cc rejects this. */ -+ /* Ultrix mips cc rejects this sort of thing. */ - typedef int charset[2]; -- const charset cs; -+ const charset cs = { 0, 0 }; - /* SunOS 4.1.1 cc rejects this. */ - char const *const *pcpcc; - char **ppc; -@@ -9015,8 +9037,9 @@ main () - ++pcpcc; - ppc = (char**) pcpcc; - pcpcc = (char const *const *) ppc; -- { /* SCO 3.2v4 cc rejects this. */ -- char *t; -+ { /* SCO 3.2v4 cc rejects this sort of thing. */ -+ char tx; -+ char *t = &tx; - char const *s = 0 ? (char *) 0 : (char const *) 0; - - *t++ = 0; -@@ -9032,10 +9055,10 @@ main () - iptr p = 0; - ++p; - } -- { /* AIX XL C 1.02.0.0 rejects this saying -+ { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying - "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ -- struct s { int j; const int *ap[3]; }; -- struct s *b; b->j = 5; -+ struct s { int j; const int *ap[3]; } bx; -+ struct s *b = &bx; b->j = 5; - } - { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ - const int foo = 10; -@@ -9701,9 +9724,9 @@ LD_SWITCH_X_SITE_AUX= - LD_SWITCH_X_SITE_AUX_RPATH= - if test "${x_libraries}" != NONE; then - if test -n "${x_libraries}"; then -- LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"` -- LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` -- LD_SWITCH_X_SITE_AUX_RPATH=`echo ${LD_SWITCH_X_SITE_AUX} | sed -e 's/-R/-Wl,-rpath,/'` -+ LD_SWITCH_X_SITE="-L ${x_libraries%%:*}" -+ LD_SWITCH_X_SITE_AUX="-rpath-link ${x_libraries%%:*}" -+ LD_SWITCH_X_SITE_AUX_RPATH="-Wl,-rpath-link ${x_libraries%%:*}" - fi - x_default_search_path="" - x_search_path=${x_libraries} -@@ -9925,7 +9948,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_HAVE_XSERVER="true" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -10746,7 +10769,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -10860,7 +10883,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -10986,7 +11009,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -11096,7 +11119,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -11297,7 +11320,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -11414,7 +11437,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -11519,7 +11542,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -11702,7 +11725,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -12356,7 +12379,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -12458,7 +12481,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -12669,7 +12692,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -12773,7 +12796,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -12925,7 +12948,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -13651,7 +13674,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -13984,7 +14007,7 @@ do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do -- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_liblockfile="yes" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 -@@ -23074,16 +23097,16 @@ if (echo >conf$$.file) 2>/dev/null; then - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. -- # In both cases, we have to default to `cp -p'. -+ # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || -- as_ln_s='cp -p' -+ as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else -- as_ln_s='cp -p' -+ as_ln_s='cp -pR' - fi - else -- as_ln_s='cp -p' -+ as_ln_s='cp -pR' - fi - rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file - rmdir conf$$.dir 2>/dev/null -@@ -23143,28 +23166,16 @@ else - as_mkdir_p=false - fi - --if test -x / >/dev/null 2>&1; then -- as_test_x='test -x' --else -- if ls -dL / >/dev/null 2>&1; then -- as_ls_L_option=L -- else -- as_ls_L_option= -- fi -- as_test_x=' -- eval sh -c '\'' -- if test -d "$1"; then -- test -d "$1/."; -- else -- case $1 in #( -- -*)set "./$1";; -- esac; -- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( -- ???[sx]*):;;*)false;;esac;fi -- '\'' sh -- ' --fi --as_executable_p=$as_test_x -+ -+# as_fn_executable_p FILE -+# ----------------------- -+# Test if FILE is an executable regular file. -+as_fn_executable_p () -+{ -+ test -f "$1" && test -x "$1" -+} # as_fn_executable_p -+as_test_x='test -x' -+as_executable_p=as_fn_executable_p - - # Sed expression to map a string onto a valid CPP name. - as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" -@@ -23186,7 +23197,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_wri - # values after options handling. - ac_log=" - This file was extended by emacs $as_me 24.2, which was --generated by GNU Autoconf 2.68. Invocation command line was -+generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS -@@ -23252,10 +23263,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_writ - ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" - ac_cs_version="\\ - emacs config.status 24.2 --configured by $0, generated by GNU Autoconf 2.68, -+configured by $0, generated by GNU Autoconf 2.69, - with options \\"\$ac_cs_config\\" - --Copyright (C) 2010 Free Software Foundation, Inc. -+Copyright (C) 2012 Free Software Foundation, Inc. - This config.status script is free software; the Free Software Foundation - gives unlimited permission to copy, distribute and modify it." - -@@ -23346,7 +23357,7 @@ fi - _ACEOF - cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - if \$ac_cs_recheck; then -- set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -+ set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' ---- src/config.in -+++ src/config.in 2012-06-28 08:41:57.805727091 +0000 -@@ -1062,9 +1062,9 @@ along with GNU Emacs. If not, see 0 => grows toward higher addresses -- STACK_DIRECTION < 0 => grows toward lower addresses -- STACK_DIRECTION = 0 => direction of growth unknown */ -+ STACK_DIRECTION > 0 => grows toward higher addresses -+ STACK_DIRECTION < 0 => grows toward lower addresses -+ STACK_DIRECTION = 0 => direction of growth unknown */ - #undef STACK_DIRECTION - - /* Define to 1 if the `S_IS*' macros in do not work properly. */ -@@ -1155,7 +1155,7 @@ along with GNU Emacs. If not, see = 1110 @@ -362,9 +356,6 @@ make_mchkoff () export MALLOC_CHECK_ fi } -%if 0%{?suse_version} >= 1130 -autoconf -%endif CFLAGS="$CFLAGS $SMALL" ./configure ${COMP} ${PREFIX} ${NOX11} ${SYS} make_mchkoff bootstrap make -C lisp updates compile @@ -1536,7 +1527,7 @@ done %{_datadir}/emacs/%{version}/etc/yow.lines %dir %{_datadir}/emacs/%{version}/leim/ %dir %{_datadir}/emacs/%{version}/leim/ja-dic/ -%{_datadir}/emacs/%{version}/leim/ja-dic/ja-dic.el +%{_datadir}/emacs/%{version}/leim/ja-dic/ja-dic.elc %{_datadir}/emacs/%{version}/leim/leim-list.el %dir %{_datadir}/emacs/%{version}/leim/quail/ %{_datadir}/emacs/%{version}/leim/quail/4Corner.elc @@ -1556,47 +1547,47 @@ done %{_datadir}/emacs/%{version}/leim/quail/TONEPY.elc %{_datadir}/emacs/%{version}/leim/quail/ZIRANMA.elc %{_datadir}/emacs/%{version}/leim/quail/ZOZY.elc -%{_datadir}/emacs/%{version}/leim/quail/arabic.el -%{_datadir}/emacs/%{version}/leim/quail/croatian.el -%{_datadir}/emacs/%{version}/leim/quail/cyril-jis.el -%{_datadir}/emacs/%{version}/leim/quail/cyrillic.el -%{_datadir}/emacs/%{version}/leim/quail/czech.el -%{_datadir}/emacs/%{version}/leim/quail/ethiopic.el -%{_datadir}/emacs/%{version}/leim/quail/georgian.el -%{_datadir}/emacs/%{version}/leim/quail/greek.el -%{_datadir}/emacs/%{version}/leim/quail/hangul.el -%{_datadir}/emacs/%{version}/leim/quail/hanja-jis.el -%{_datadir}/emacs/%{version}/leim/quail/hanja.el -%{_datadir}/emacs/%{version}/leim/quail/hanja3.el -%{_datadir}/emacs/%{version}/leim/quail/hebrew.el -%{_datadir}/emacs/%{version}/leim/quail/indian.el -%{_datadir}/emacs/%{version}/leim/quail/ipa-praat.el -%{_datadir}/emacs/%{version}/leim/quail/ipa.el -%{_datadir}/emacs/%{version}/leim/quail/japanese.el -%{_datadir}/emacs/%{version}/leim/quail/lao.el -%{_datadir}/emacs/%{version}/leim/quail/latin-alt.el -%{_datadir}/emacs/%{version}/leim/quail/latin-ltx.el -%{_datadir}/emacs/%{version}/leim/quail/latin-post.el -%{_datadir}/emacs/%{version}/leim/quail/latin-pre.el -%{_datadir}/emacs/%{version}/leim/quail/lrt.el -%{_datadir}/emacs/%{version}/leim/quail/persian.el -%{_datadir}/emacs/%{version}/leim/quail/py-punct.el -%{_datadir}/emacs/%{version}/leim/quail/pypunct-b5.el +%{_datadir}/emacs/%{version}/leim/quail/arabic.elc +%{_datadir}/emacs/%{version}/leim/quail/croatian.elc +%{_datadir}/emacs/%{version}/leim/quail/cyril-jis.elc +%{_datadir}/emacs/%{version}/leim/quail/cyrillic.elc +%{_datadir}/emacs/%{version}/leim/quail/czech.elc +%{_datadir}/emacs/%{version}/leim/quail/ethiopic.elc +%{_datadir}/emacs/%{version}/leim/quail/georgian.elc +%{_datadir}/emacs/%{version}/leim/quail/greek.elc +%{_datadir}/emacs/%{version}/leim/quail/hangul.elc +%{_datadir}/emacs/%{version}/leim/quail/hanja-jis.elc +%{_datadir}/emacs/%{version}/leim/quail/hanja.elc +%{_datadir}/emacs/%{version}/leim/quail/hanja3.elc +%{_datadir}/emacs/%{version}/leim/quail/hebrew.elc +%{_datadir}/emacs/%{version}/leim/quail/indian.elc +%{_datadir}/emacs/%{version}/leim/quail/ipa-praat.elc +%{_datadir}/emacs/%{version}/leim/quail/ipa.elc +%{_datadir}/emacs/%{version}/leim/quail/japanese.elc +%{_datadir}/emacs/%{version}/leim/quail/lao.elc +%{_datadir}/emacs/%{version}/leim/quail/latin-alt.elc +%{_datadir}/emacs/%{version}/leim/quail/latin-ltx.elc +%{_datadir}/emacs/%{version}/leim/quail/latin-post.elc +%{_datadir}/emacs/%{version}/leim/quail/latin-pre.elc +%{_datadir}/emacs/%{version}/leim/quail/lrt.elc +%{_datadir}/emacs/%{version}/leim/quail/persian.elc +%{_datadir}/emacs/%{version}/leim/quail/py-punct.elc +%{_datadir}/emacs/%{version}/leim/quail/pypunct-b5.elc %{_datadir}/emacs/%{version}/leim/quail/quick-b5.elc %{_datadir}/emacs/%{version}/leim/quail/quick-cns.elc -%{_datadir}/emacs/%{version}/leim/quail/rfc1345.el -%{_datadir}/emacs/%{version}/leim/quail/sgml-input.el -%{_datadir}/emacs/%{version}/leim/quail/sisheng.el -%{_datadir}/emacs/%{version}/leim/quail/slovak.el -%{_datadir}/emacs/%{version}/leim/quail/symbol-ksc.el -%{_datadir}/emacs/%{version}/leim/quail/thai.el -%{_datadir}/emacs/%{version}/leim/quail/tibetan.el +%{_datadir}/emacs/%{version}/leim/quail/rfc1345.elc +%{_datadir}/emacs/%{version}/leim/quail/sgml-input.elc +%{_datadir}/emacs/%{version}/leim/quail/sisheng.elc +%{_datadir}/emacs/%{version}/leim/quail/slovak.elc +%{_datadir}/emacs/%{version}/leim/quail/symbol-ksc.elc +%{_datadir}/emacs/%{version}/leim/quail/thai.elc +%{_datadir}/emacs/%{version}/leim/quail/tibetan.elc %{_datadir}/emacs/%{version}/leim/quail/tsang-b5.elc %{_datadir}/emacs/%{version}/leim/quail/tsang-cns.elc -%{_datadir}/emacs/%{version}/leim/quail/uni-input.el -%{_datadir}/emacs/%{version}/leim/quail/viqr.el -%{_datadir}/emacs/%{version}/leim/quail/vntelex.el -%{_datadir}/emacs/%{version}/leim/quail/welsh.el +%{_datadir}/emacs/%{version}/leim/quail/uni-input.elc +%{_datadir}/emacs/%{version}/leim/quail/viqr.elc +%{_datadir}/emacs/%{version}/leim/quail/vntelex.elc +%{_datadir}/emacs/%{version}/leim/quail/welsh.elc %dir %{_datadir}/emacs/%{version}/lisp/ %{_datadir}/emacs/%{version}/lisp/COPYING %doc %{_datadir}/emacs/%{version}/lisp/README @@ -3044,15 +3035,6 @@ done %{_datadir}/emacs/%{version}/site-lisp/term/linux.el %{_datadir}/emacs/%{version}/site-lisp/term/locale.el %dir %{_datadir}/emacs/site-lisp/ -%{_datadir}/emacs/site-lisp/ger-keys.elc -%{_datadir}/emacs/site-lisp/maple.elc -%{_datadir}/emacs/site-lisp/php-mode.elc -%{_datadir}/emacs/site-lisp/rmailgen.elc -%{_datadir}/emacs/site-lisp/rmime.elc -%{_datadir}/emacs/site-lisp/site-start.el -%{_datadir}/emacs/site-lisp/subdirs.el -%{_datadir}/emacs/site-lisp/vt200-esc-fix.elc -%{_datadir}/emacs/site-lisp/xfonts.elc %doc %{_mandir}/man1/*.1.gz %dir /var/games/emacs/ /var/games/emacs/snake-scores @@ -3078,6 +3060,7 @@ done %files -n emacs-el %defattr(-, root, root) +%{_datadir}/emacs/%{version}/leim/ja-dic/ja-dic.el.gz %{_datadir}/emacs/%{version}/leim/quail/4Corner.el.gz %{_datadir}/emacs/%{version}/leim/quail/ARRAY30.el.gz %{_datadir}/emacs/%{version}/leim/quail/CCDOSPY.el.gz @@ -3095,10 +3078,47 @@ done %{_datadir}/emacs/%{version}/leim/quail/TONEPY.el.gz %{_datadir}/emacs/%{version}/leim/quail/ZIRANMA.el.gz %{_datadir}/emacs/%{version}/leim/quail/ZOZY.el.gz +%{_datadir}/emacs/%{version}/leim/quail/arabic.el.gz +%{_datadir}/emacs/%{version}/leim/quail/croatian.el.gz +%{_datadir}/emacs/%{version}/leim/quail/cyril-jis.el.gz +%{_datadir}/emacs/%{version}/leim/quail/cyrillic.el.gz +%{_datadir}/emacs/%{version}/leim/quail/czech.el.gz +%{_datadir}/emacs/%{version}/leim/quail/ethiopic.el.gz +%{_datadir}/emacs/%{version}/leim/quail/georgian.el.gz +%{_datadir}/emacs/%{version}/leim/quail/greek.el.gz +%{_datadir}/emacs/%{version}/leim/quail/hangul.el.gz +%{_datadir}/emacs/%{version}/leim/quail/hanja-jis.el.gz +%{_datadir}/emacs/%{version}/leim/quail/hanja.el.gz +%{_datadir}/emacs/%{version}/leim/quail/hanja3.el.gz +%{_datadir}/emacs/%{version}/leim/quail/hebrew.el.gz +%{_datadir}/emacs/%{version}/leim/quail/indian.el.gz +%{_datadir}/emacs/%{version}/leim/quail/ipa-praat.el.gz +%{_datadir}/emacs/%{version}/leim/quail/ipa.el.gz +%{_datadir}/emacs/%{version}/leim/quail/japanese.el.gz +%{_datadir}/emacs/%{version}/leim/quail/lao.el.gz +%{_datadir}/emacs/%{version}/leim/quail/latin-alt.el.gz +%{_datadir}/emacs/%{version}/leim/quail/latin-ltx.el.gz +%{_datadir}/emacs/%{version}/leim/quail/latin-post.el.gz +%{_datadir}/emacs/%{version}/leim/quail/latin-pre.el.gz +%{_datadir}/emacs/%{version}/leim/quail/lrt.el.gz +%{_datadir}/emacs/%{version}/leim/quail/persian.el.gz +%{_datadir}/emacs/%{version}/leim/quail/py-punct.el.gz +%{_datadir}/emacs/%{version}/leim/quail/pypunct-b5.el.gz %{_datadir}/emacs/%{version}/leim/quail/quick-b5.el.gz %{_datadir}/emacs/%{version}/leim/quail/quick-cns.el.gz +%{_datadir}/emacs/%{version}/leim/quail/rfc1345.el.gz +%{_datadir}/emacs/%{version}/leim/quail/sgml-input.el.gz +%{_datadir}/emacs/%{version}/leim/quail/sisheng.el.gz +%{_datadir}/emacs/%{version}/leim/quail/slovak.el.gz +%{_datadir}/emacs/%{version}/leim/quail/symbol-ksc.el.gz +%{_datadir}/emacs/%{version}/leim/quail/thai.el.gz +%{_datadir}/emacs/%{version}/leim/quail/tibetan.el.gz %{_datadir}/emacs/%{version}/leim/quail/tsang-b5.el.gz %{_datadir}/emacs/%{version}/leim/quail/tsang-cns.el.gz +%{_datadir}/emacs/%{version}/leim/quail/uni-input.el.gz +%{_datadir}/emacs/%{version}/leim/quail/viqr.el.gz +%{_datadir}/emacs/%{version}/leim/quail/vntelex.el.gz +%{_datadir}/emacs/%{version}/leim/quail/welsh.el.gz %{_datadir}/emacs/%{version}/lisp/abbrev.el.gz %{_datadir}/emacs/%{version}/lisp/align.el.gz %{_datadir}/emacs/%{version}/lisp/allout-widgets.el.gz diff --git a/site-lisp.tar.bz2 b/site-lisp.tar.bz2 index b8fba44..bc90f63 100644 --- a/site-lisp.tar.bz2 +++ b/site-lisp.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8710deb2a54e2da1065fa3bc62b18c70dc00bcbb081b553f0b0e7cfc593c2d5b -size 51829 +oid sha256:573745709c98d3a20e5805fbde9f52ae57528eb74b9966434c0a0c369fe50b6a +size 51723