* Makefile.in (install): Compress source files.
+2005-11-01 Romain Francoise <romain@orebokech.com>
+
+ * configure.in: Check for gzip.
+ * configure: Regenerate.
+
+ * Makefile.in (install): Compress source files.
+
2005-10-24 Steven Tamm <steventamm@mac.com>
- * configure.in: Fix darwin386 configuration issue
- * configure: Regenerate
+ * configure.in: Fix darwin386 configuration issue.
+ * configure: Regenerate.
2005-10-22 Eli Zaretskii <eliz@gnu.org>
# By default, we uphold the dignity of our programs.
INSTALL_STRIP =
+# We use gzip to compress installed .el files.
+GZIP = @GZIP@
+
# ============================= Targets ==============================
# Program name transformation.
(cd ${lispdir}; find . -exec chown $${LOGNAME:-$$USERNAME} {} ';') ; \
else true; fi
-unset CDPATH; \
+ if [ -n "${GZIP}" ]; \
+ then \
+ echo "Compressing *.el ..." ; \
+ (cd ${lispdir}; for f in `find . -name "*.elc" -print`; do \
+ ${GZIP} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \
+ done) \
+ else true; fi
+ -unset CDPATH; \
thisdir=`/bin/pwd`; \
if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \
then \
AC_PATH_PROG(INSTALL_INFO, install-info)
AC_PATH_PROG(INSTALL_INFO, install-info,, /usr/sbin)
AC_PATH_PROG(INSTALL_INFO, install-info,:, /sbin)
+AC_PATH_PROG(GZIP, gzip)
dnl Add our options to ac_link now, after it is set up.