[536] in BarnOwl Developers
[D-O-H] r655 - in trunk: . owl
daemon@ATHENA.MIT.EDU (nelhage@MIT.EDU)
Thu Oct 29 18:07:11 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
To: dirty-owl-hackers@mit.edu
From: nelhage@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Tue, 6 Mar 2007 19:34:15 -0500 (EST)
Author: nelhage
Date: 2007-03-06 19:34:15 -0500 (Tue, 06 Mar 2007)
New Revision: 655
Modified:
trunk/
trunk/owl/Makefile.in
trunk/owl/owl.h
Log:
r19375@phanatique: nelhage | 2007-03-06 19:32:54 -0500
Using the svn reversion number as our version
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- bb873fd7-8e23-0410-944a-99ec44c633eb:/branches/owl/filter-rewrite:15925
bb873fd7-8e23-0410-944a-99ec44c633eb:/local/d-o-h/trunk:19346
+ bb873fd7-8e23-0410-944a-99ec44c633eb:/branches/owl/filter-rewrite:15925
bb873fd7-8e23-0410-944a-99ec44c633eb:/local/d-o-h/trunk:19375
Modified: trunk/owl/Makefile.in
===================================================================
--- trunk/owl/Makefile.in 2007-03-06 02:00:24 UTC (rev 654)
+++ trunk/owl/Makefile.in 2007-03-07 00:34:15 UTC (rev 655)
@@ -10,7 +10,7 @@
CC=@CC@
LIBS=@LIBS@ -L./libfaim -lfaim
-CFLAGS=@CFLAGS@ -I. -I./libfaim -DDATADIR=\"${datadir}\"
+CFLAGS=@CFLAGS@ -I. -I./libfaim -DDATADIR=\"${datadir}\" -DOWL_SVN_REVNO=`svnversion`
LDFLAGS=@LDFLAGS@
XSUBPPDIR=@XSUBPPDIR@
XSUBPPFLAGS=@XSUBPPFLAGS@
Modified: trunk/owl/owl.h
===================================================================
--- trunk/owl/owl.h 2007-03-06 02:00:24 UTC (rev 654)
+++ trunk/owl/owl.h 2007-03-07 00:34:15 UTC (rev 655)
@@ -70,9 +70,16 @@
static const char owl_h_fileIdent[] = "$Id$";
-#define OWL_VERSION 2.1.11
-#define OWL_VERSION_STRING "2.1.11-doh"
+#define STRINGIFY(x) _STRINGIFY(x)
+#define _STRINGIFY(x) #x
+#ifndef OWL_SVN_REVNO
+#define OWL_SVN_REVNO ????
+#endif
+
+#define OWL_VERSION_STRING "r" STRINGIFY(OWL_SVN_REVNO)
+
+
/* Feature that is being tested to redirect stderr through a pipe.
* There may still be some portability problems with this. */
#define OWL_STDERR_REDIR 1