aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge from gnulib.Paul Eggert2012-08-131-0/+5
| | | | | This incorporates: 2012-08-05 extern-inline: also ignore -Wmissing-declarations
* * lib/makefile.w32-in (STAT_TIME_H): New macro.Juanma Barranquero2012-08-101-0/+6
| | | | | (FTOASTR_C, $(BLD)/stat-time.$(O), $(BLD)/timespec.$(O)) ($(BLD)/u64.$(O)): Update dependencies.
* Move DIRECTORY_SEP from lisp.h to config.hGlenn Morris2012-08-091-0/+4
| | | | | | | | | | | | | * configure.ac (DIRECTORY_SEP): Move here from src/lisp.h. * src/lisp.h (DIRECTORY_SEP): Let configure set it. * nt/config.nt (DIRECTORY_SEP): Move here from src/lisp.h. * lib-src/movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP): * lib-src/make-docfile.c (DIRECTORY_SEP, IS_DIRECTORY_SEP): * lib-src/emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP): Remove (they are in config.h now).
* Fix and document recently introduced configuration options.Dmitry Antipov2012-08-081-0/+6
| | | | | | | * configure.ac (--disable-features): Rename to --without-all. (OPTION_DEFAULT_ON): Change to use with_features. * INSTALL: Fix description. * etc/NEWS: Mention --without-all and --enable-link-time-optimization.
* * configure.ac: New option --disable-features.Dmitry Antipov2012-08-071-0/+6
| | | | | (OPTION_DEFAULT_ON): Change to use enable_features. * INSTALL: Explain --disable-features.
* Set a minimum automake versionGlenn Morris2012-08-061-0/+5
| | | | | * configure.ac: Require automake 1.11 (fairly arbitrarily). * autogen.sh (automake_min): Get it from configure.ac.
* Grammar fixesGlenn Morris2012-08-061-1/+1
|
* Guard against potential configure bug wrt HAVE_GETWDGlenn Morris2012-08-061-0/+2
| | | | | | * configure.ac (BROKEN_GETWD) [unixware]: New define. * src/sysdep.c: Respect BROKEN_GETWD.
* Remove GNU_LIBRARY_PENDING_OUTPUT_COUNTGlenn Morris2012-08-061-0/+6
| | | | | | | | | | | | | | | * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Remove. (PENDING_OUTPUT_COUNT): Absorb GNU_LIBRARY_PENDING_OUTPUT_COUNT. (DISPNEW_NEEDS_STDIO_EXT): New define. * src/dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT): Let configure handle it. (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it. * nt/config.nt (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Remove. (PENDING_OUTPUT_COUNT): Define it as dispnew.c used to. * admin/CPP-DEFINES (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Remove.
* * INSTALL: Explain, how to disable D-Bus at all. (Bug#12112)Michael Albinus2012-08-051-0/+4
|
* * configure.ac: Disable paxctl if binaries don't have a PT_PAX_FLAGS header.Ulrich Müller2012-08-041-0/+5
| | | | Fixes: debbugs:11979
* Adapt lib/makefile.w32-in to latest gnulib imports.Eli Zaretskii2012-08-031-0/+8
| | | | | | | | lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/stat-time.$(O), $(BLD)/timespec.$(O), and $(BLD)/u64.$(O). (SHA512_H): Don't mention u64.h twice. ($(BLD)/stat-time.$(O), ($(BLD)/timespec.$(O), ($(BLD)/u64.$(O)): New targets.
* Fix a typo in top-level ChangeLog.Eli Zaretskii2012-08-031-1/+1
|
* Merge from gnulib.Paul Eggert2012-08-021-0/+5
| | | | 2012-08-02 stat-time, timespec, u64: support naive out-of-dir builds
* * lib/Makefile.am (DEFAULT_INCLUDES): Add -I$(top_srcdir)/lib for ↵YAMAMOTO Mitsuharu2012-08-021-0/+5
| | | | out-of-tree build.
* * src/s/: Remove empty directory.Glenn Morris2012-08-011-0/+2
| | | | * make-dist: Remove src/s.
* Move NT-specific include file to the NT include directoryGlenn Morris2012-08-011-0/+4
| | | | | | | | | | | | | | | * nt/inc/ms-w32.h: Move here from ../src/s. * nt/config.nt (config_opsysfile): Change to <ms-w32.h>. * s/ms-w32.h: Move to ../nt/inc. * src/makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H): Update for new ms-w32.h location. * lib-src/makefile.w32-in (MS_W32_H): Update for new ms-w32.h location. * lib/makefile.w32-in (MS_W32_H): Update for new ms-w32.h location. * lisp/emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
* Merge from gnulib, for extern-inline.Paul Eggert2012-08-011-0/+7
| | | | | | | | | | 2012-08-01 extern-inline: new module 2012-08-01 stat-time, timespec, u64, utimens: use extern-inline * lib/stat-time.c, lib/utimespec.c, lib/u64.c, m4/extern-inline.m4: New files. The new .c files are for instantiating extern inline functions. Fixes: debbugs:12116
* Port to Solaris 8.Paul Eggert2012-08-011-0/+8
| | | | | | | | | | Without this change, 'configure' fails because the recently-added wait3 prototype in config.h messes up later 'configure' tests. Fix this problem by droping wait3 and WRETCODE, as they're no longer needed on hosts that are current porting targets. * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME. All uses changed to waitpid and WEXITSTATUS. * src/syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
* Avoid needless autoheader after autogen.sh.Paul Eggert2012-08-011-0/+7
| | | | | | * src/stamp-h.in: Remove from bzr repository; no longer needed there. * .bzrignore: Add it. * autogen.sh: Create it.
* * configure.ac (DOS_NT, MSDOS): New system type templates.Glenn Morris2012-08-011-0/+4
|
* Tweak FreeBSD LIB_STANDARD, START_FILESUlrich Müller2012-08-011-0/+5
| | | | | | | * configure.ac (LIB_STANDARD, START_FILES) [FreeBSD]: Don't include crtbegin.o and crtend.o. Fixes: debbugs:12047
* * configure.ac (INTERNAL_TERMINAL): New.Glenn Morris2012-07-311-1/+2
|
* * configure.ac (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC): New.Glenn Morris2012-07-311-0/+2
|
* Move definitions of directory and device separators to configureGlenn Morris2012-07-311-0/+5
| | | | | | | | * configure.ac (DEVICE_SEP, IS_DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Move here from src/lisp.h. * src/lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP): Move to configure.ac.
* Adapt Windows port to recent changes in autogen/config.in.Juanma Barranquero2012-08-011-0/+5
| | | | | | | | | | | | | | | | | | * lib-src/makefile.w32-in (CONFIG_H): Update dependencies. (CONF_POST_H): New macro. * lib/makefile.w32-in (CONFIG_H): Update dependencies. (CONF_POST_H): New macro. * nt/config.nt: Sync with autogen/config.in. Remove code moved to conf_post.h and include <conf_post.h> (NULL_DEVICE, SEPCHAR, SIGNAL_H_AHB, TIOCSIGSEND, USER_FULL_NAME) (USG5_4, WRETCODE, _longjmp, _setjmp, wait3): New macros. * src/makefile.w32-in (CONFIG_H): Update dependencies. (CONF_POST_H): New macro. * src/s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
* * configure.ac (S_FILE): Remove output variable.Glenn Morris2012-07-311-0/+2
| | | | | | * src/Makefile.in (S_FILE): No longer set by configure. * msdos/sed1v2.inp (S_FILE): Update for format change.
* * configure.ac (opsysfile): Use AH_TEMPLATE. Doc fix.Glenn Morris2012-07-311-0/+2
|
* * configure.ac (NULL_DEVICE, SEPCHAR, USER_FULL_NAME): Move here from src.Glenn Morris2012-07-311-0/+3
| | | | | | * src/editfns.c (USER_FULL_NAME): * src/emacs.c (SEPCHAR): * src/process.h (NULL_DEVICE): Let configure set them.
* Move AMPERSAND_FULL_NAME, subprocesses from conf_post.h to configure.acGlenn Morris2012-07-311-0/+5
| | | | | | * configure.ac (AMPERSAND_FULL_NAME, subprocesses): Move here from conf_post.h. * src/conf_post.h (AMPERSAND_FULL_NAME, subprocesses): Move to configure.ac.
* Miscellaneous fixes for non-default X toolkits.Dmitry Antipov2012-07-311-0/+6
| | | | | | | | | | | * configure.ac (MOTIF): Check for /usr/include/openmotif and /usr/(lib|lib64)/openmotif if --with-x-toolkit=motif. * lwlib/lwlib-Xm.c (make_menu_in_widget): Remove unused variable. * src/xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings. * src/xterm.c (x_frame_of_widget): Remove redundant prototype. Move under #ifdef USE_LUCID. (x_create_toolkit_scroll_bar): Adjust scroll_bar_name definition and usage to avoid warnings.
* * Makefile.in (install-arch-indep): Avoid eval.Andreas Schwab2012-07-311-0/+4
|
* * configure.ac (opsysfile, S_FILE): Now they are always empty.Glenn Morris2012-07-301-0/+2
|
* * configure.ac (opsysfile): Forgot to set it to empty on sol2-10Glenn Morris2012-07-301-0/+3
| | | | when removing src/s/sol2-6.h yesterday.
* Remove src/s/usg5-4-common.hGlenn Morris2012-07-301-0/+3
| | | | | | | | * configure.ac (USG5_4): Reintroduce this. (opsysfile): Set to empty on irix6-5, sol2*, and unixware. * src/conf_post.h [USG5_4]: Move remaining contents of s/usg5-4-common.h here. * src/s/usg5-4-common.h: Remove file.
* Move wait3, WRETCODE from src/s to configureGlenn Morris2012-07-301-0/+2
| | | | | | * configure.ac (wait3, WRETCODE): Move here from src/s/usg5-4-common.h. * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
* Remove src/s/irix6-5.hGlenn Morris2012-07-301-1/+2
| | | | | | | | * configure.ac (opsysfile): Set to s/usg5-4-common.h on irix6-5. * src/conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here. * src/s/irix6-5.h: Remove file.
* Remove src/s/darwin.hGlenn Morris2012-07-301-1/+1
| | | | | | | | * configure.ac (opsysfile): Set to empty on darwin. * src/conf_post.h [DARWIN_OS]: Move remaining contents of src/s/darwin.h here. * src/s/darwin.h: Remove file.
* Remove src/s/hpux10-20.hGlenn Morris2012-07-301-0/+4
| | | | | | | | * configure.ac (opsysfile): Set to empty on hpux*. * src/conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h. * src/s/hpux10-20.h: Remove file, which is now empty.
* Use an include file in configure.ac's AH_BOTTOMGlenn Morris2012-07-301-0/+5
| | | | | | | | | | | | * configure.ac (AH_BOTTOM): Use an include file, so that the contents do not get processed by autoheader. Eg this prevents undefs being commented out, and is the recommended technique from the autoconf manual. * src/conf_post.h: New, split from configure.ac's AH_BOTTOM. * src/Makefile.in (config_h): Add conf_post.h. * src/makefile.w32-in (CONFIG_H): Add conf_post.h.
* Do not overwrite config.status while executing it.Paul Eggert2012-07-301-0/+7
| | | | | | | | | | * Makefile.in (MAKEFILE_NAME): New macro. ($(MAKEFILE_NAME)): Rename rule from Makefile. * configure.ac (epaths): Set MAKEFILE_NAME to a bogus value, so that GNU 'make' isn't tempted to make the Makefile and then regenerate config.status while config.status is running. Fixes: debbugs:11214
* Update .PHONY listings in makefiles.Paul Eggert2012-07-301-0/+9
|
* Move TIOCSIGSEND from src/s to configureGlenn Morris2012-07-301-1/+1
| | | | | | | * configure.ac (TIOCSIGSEND): Move here from src/s. * src/s/usg5-4-common.h (TIOCSIGSEND): Let configure set it. * src/s/irix6-5.h (TIOCSIGSEND): No more need to undefine.
* Empty src/s/netbsd.h and remove the fileGlenn Morris2012-07-301-0/+4
| | | | | | | | | * configure.ac (SIGNAL_H_AHB): New hack macro. (opsysfile): Set to empty on netbsd, openbsd. (AH_BOTTOM): Include signal.h if SIGNAL_H_AHB is defined. * src/s/netbsd.h: Let configure include signal.h if needed. Remove file, which is now empty.
* Move _longjmp, _setjmp from src/s to configureGlenn Morris2012-07-301-0/+4
| | | | | | | * configure.ac (_longjmp, _setjmp): Move here from src/s. * src/s/usg5-4-common.h (_longjmp, _setjmp): Let configure set them. * src/s/irix6-5.h (_longjmp, _setjmp): No more need to undefine.
* * Makefile.in (install-arch-indep): Remove sh -x.Jan Djärv2012-07-301-0/+4
|
* Remove s/aix4-2.hGlenn Morris2012-07-291-2/+2
| | | | | | * configure.ac (opsysfile): Set to empty on aix4-2. * src/s/aix4-2.h: Remove empty file.
* * configure.ac (opsysfile): Tweak message for null case.Glenn Morris2012-07-291-0/+2
| | | | (The autoconf manual says this is portable.)
* Remove some empty src/s files.Glenn Morris2012-07-291-0/+5
| | | | | | | | * configure.ac (opsysfile): Set to empty on freebsd, gnu-linux, gnu-kfreebsd; and to usg5-4-common.h on sol2*, unixware. * src/s/freebsd.h, src/s/gnu-linux.h, src/s/sol2-6.h, src/s/unixware.h: Remove empty files.
* Merge from gnulib, incorporating:Paul Eggert2012-07-291-0/+5
| | | | * doc/misc/texinfo.tex: Update to 2012-07-29.17 version.