|
From: <sv...@va...> - 2009-07-15 15:24:57
|
Author: sewardj
Date: 2009-07-15 16:24:49 +0100 (Wed, 15 Jul 2009)
New Revision: 1909
Log:
Get rid of LibVEX_Version().
Modified:
trunk/priv/main_main.c
trunk/pub/libvex.h
Modified: trunk/priv/main_main.c
===================================================================
--- trunk/priv/main_main.c 2009-07-12 13:01:17 UTC (rev 1908)
+++ trunk/priv/main_main.c 2009-07-15 15:24:49 UTC (rev 1909)
@@ -80,16 +80,6 @@
/* Exported to library client. */
-const HChar* LibVEX_Version ( void )
-{
-return
-#include "main_vex_svnversion.h"
- ;
-}
-
-
-/* Exported to library client. */
-
void LibVEX_default_VexControl ( /*OUT*/ VexControl* vcon )
{
vcon->iropt_verbosity = 0;
Modified: trunk/pub/libvex.h
===================================================================
--- trunk/pub/libvex.h 2009-07-12 13:01:17 UTC (rev 1908)
+++ trunk/pub/libvex.h 2009-07-15 15:24:49 UTC (rev 1909)
@@ -276,15 +276,6 @@
/*-------------------------------------------------------*/
-/*--- Version information ---*/
-/*-------------------------------------------------------*/
-
-/* Returns the Vex SVN version, as a statically allocated string. */
-
-extern const HChar* LibVEX_Version ( void );
-
-
-/*-------------------------------------------------------*/
/*--- Storage management control ---*/
/*-------------------------------------------------------*/
|
|
From: Nicholas N. <n.n...@gm...> - 2009-07-15 22:31:11
|
On Thu, Jul 16, 2009 at 1:24 AM, <sv...@va...> wrote: > Author: sewardj > Date: 2009-07-15 16:24:49 +0100 (Wed, 15 Jul 2009) > New Revision: 1909 > > Log: > Get rid of LibVEX_Version(). This is lovely! (Ashley Pittman will be pleased, too.) You can also update the Makefile-gcc and Makefile-icc files to remove all traces of the vex_svnversion.h, including the 'version' target. You can also remove the quote.txt and newline.txt files. Nick |