diff options
author | Glenn Morris <rgm@gnu.org> | 2014-11-22 14:04:32 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-11-22 14:07:48 -0800 |
commit | 84e2f13cd50a7ef6af736559107f0a8e6bcec6c5 (patch) | |
tree | c8b5f5424908cc820cc8e51c1669e889b15f3d7c /nt/emacs.rc.in | |
parent | 239cd5b62759b23020cb308d993b7e26933943d7 (diff) | |
download | emacs-84e2f13cd50a7ef6af736559107f0a8e6bcec6c5.tar.gz emacs-84e2f13cd50a7ef6af736559107f0a8e6bcec6c5.tar.bz2 emacs-84e2f13cd50a7ef6af736559107f0a8e6bcec6c5.zip |
Further reduce number of versioned files storing Emacs version number.
* configure.ac (comma_version, comma_space_version) [mingw32]:
New output variables.
(nt/emacs.rc, nt/emacsclient.rc) [mingw32]: New output files.
* make-dist: Update nt/ for *.rc -> *.rc.in changes.
* nt/emacs.rc.in, nt/emacsclient.rc.in: Rename from nt/emacs.rc, emacsclient.rc.
Let configure generate the real files, and set the version numbers.
* lib-src/Makefile.in (emacsclient.res): Update deps for nt/emacsclient.rc
now being in the build directory, not the source directory.
* nt/Makefile.in (distclean): Delete *.rc.
(emacs.res): Update deps for nt/emacsclient.rc now being in the
build directory, not the source directory.
* admin/admin.el (set-version): No more need to update nt/*.rc.
* admin/authors.el (authors-renamed-files-alist): Add .rc.in files.
Diffstat (limited to 'nt/emacs.rc.in')
-rw-r--r-- | nt/emacs.rc.in | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/nt/emacs.rc.in b/nt/emacs.rc.in new file mode 100644 index 00000000000..d2d17b8eb1b --- /dev/null +++ b/nt/emacs.rc.in @@ -0,0 +1,45 @@ +Emacs ICON icons/emacs.ico +32649 CURSOR icons/hand.cur +#if defined (WIN64) || defined (__x86_64__) +1 24 "emacs-x64.manifest" +#else +1 24 "emacs-x86.manifest" +#endif + +#ifndef VS_VERSION_INFO +#define VS_VERSION_INFO 1 +#endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION @comma_version@ + PRODUCTVERSION @comma_version@ + FILEFLAGSMASK 0x3FL +#ifdef EMACSDEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x1L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904B0" + BEGIN + VALUE "CompanyName", "Free Software Foundation\0" + VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0" + VALUE "FileVersion", "@comma_space_version@\0" + VALUE "InternalName", "Emacs\0" + VALUE "LegalCopyright", "Copyright (C) 2001-2014\0" + VALUE "OriginalFilename", "emacs.exe" + VALUE "ProductName", "Emacs\0" + VALUE "ProductVersion", "@comma_space_version@\0" + VALUE "OLESelfRegister", "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END |