emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103080: Make "etags --version" on Wi


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103080: Make "etags --version" on Windows produce the same as on Posix platforms.
Date: Wed, 02 Feb 2011 18:28:24 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103080
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Wed 2011-02-02 18:28:24 +0200
message:
  Make "etags --version" on Windows produce the same as on Posix platforms.
  
   makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS): Add
   ``-DEMACS_NAME="\"GNU Emacs\""''.
modified:
  lib-src/ChangeLog
  lib-src/makefile.w32-in
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2011-01-31 23:54:50 +0000
+++ b/lib-src/ChangeLog 2011-02-02 16:28:24 +0000
@@ -1,3 +1,8 @@
+2011-02-02  Eli Zaretskii  <address@hidden>
+
+       * makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS): Add
+       ``-DEMACS_NAME="\"GNU Emacs\""''.
+
 2011-01-31  Eli Zaretskii  <address@hidden>
 
        * makefile.w32-in (VERSION): Don't define, defined on nt/config.nt.

=== modified file 'lib-src/makefile.w32-in'
--- a/lib-src/makefile.w32-in   2011-01-31 19:36:08 +0000
+++ b/lib-src/makefile.w32-in   2011-02-02 16:28:24 +0000
@@ -98,7 +98,7 @@
                $(CC)  $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
                ../src/regex.c $(CC_OUT)$@
 
-ETAGS_CFLAGS  = -DHAVE_GETCWD
+ETAGS_CFLAGS  = -DHAVE_GETCWD -DEMACS_NAME="\"GNU Emacs\""
 $(BLD)/etags.$(O): etags.c
                $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
 
@@ -114,7 +114,7 @@
                - $(DEL) ctags.c
                $(CP) etags.c ctags.c
 
-CTAGS_CFLAGS  = -DCTAGS $(ETAGS_CFLAGS)
+CTAGS_CFLAGS  = -DCTAGS $(ETAGS_CFLAGS) -DEMACS_NAME="\"GNU Emacs\""
 $(BLD)/ctags.$(O): ctags.c
                $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]