changeset 715:add5a821a048

[xemacs-hg @ 2001-12-24 07:44:55 by yoshiki] Define __P if not already defined. This should fix build problem.
author yoshiki
date Mon, 24 Dec 2001 07:44:56 +0000
parents 02339d4ebed4
children d1ecd411af4c
files lib-src/ChangeLog lib-src/etags.c
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/ChangeLog	Sun Dec 23 20:28:22 2001 +0000
+++ b/lib-src/ChangeLog	Mon Dec 24 07:44:56 2001 +0000
@@ -1,3 +1,7 @@
+2001-12-24  Yoshiki Hayashi  <yoshiki@xemacs.org>
+
+	* etags.c: Define __P if not already defined.
+
 2001-12-19  Yoshiki Hayashi  <yoshiki@xemacs.org>
 
 	* Makefile.in.in (etags_args): Define EMACS_NAME to XEmacs.
--- a/lib-src/etags.c	Sun Dec 23 20:28:22 2001 +0000
+++ b/lib-src/etags.c	Mon Dec 24 07:44:56 2001 +0000
@@ -52,6 +52,9 @@
 # undef static
 # define ETAGS_REGEXPS		/* use the regexp features */
 # define LONG_OPTIONS		/* accept long options */
+# ifndef __P
+#   define __P(args) args
+# endif
 # ifndef PTR
 #   define PTR void *
 # endif