2017-10-18 19:49:35 +02:00
|
|
|
/* Copyright 2001-2004 Roger Dingledine.
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2018-06-20 14:13:28 +02:00
|
|
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
2017-10-18 19:49:35 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
2018-06-20 15:35:05 +02:00
|
|
|
#include "or/git_revision.h"
|
2017-10-18 19:49:35 +02:00
|
|
|
|
|
|
|
/** String describing which Tor Git repository version the source was
|
|
|
|
* built from. This string is generated by a bit of shell kludging in
|
|
|
|
* src/or/include.am, and is usually right.
|
|
|
|
*/
|
|
|
|
const char tor_git_revision[] =
|
|
|
|
#ifndef _MSC_VER
|
|
|
|
#include "micro-revision.i"
|
|
|
|
#endif
|
|
|
|
"";
|
|
|
|
|