mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
[6802] Fixed build of realmd (absent macro arg) after recent git_id adding.
This commit is contained in:
parent
7b0cdcdac5
commit
85c6e30bed
3 changed files with 22 additions and 2 deletions
19
contrib/git_id/.gitignore
vendored
Normal file
19
contrib/git_id/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#
|
||||
# NOTE! Don't add files that are generated in specific
|
||||
# subdirectories here. Add them in the ".gitignore" file
|
||||
# in that subdirectory instead.
|
||||
#
|
||||
# NOTE! Please use 'git-ls-files -i --exclude-standard'
|
||||
# command after changing this file, to see if there are
|
||||
# any tracked files which get ignored after the change.
|
||||
#
|
||||
# Extractor generated files at Windows build
|
||||
#
|
||||
|
||||
*.bsc
|
||||
*.ncb
|
||||
*.pdb
|
||||
*.suo
|
||||
Debug
|
||||
Release
|
||||
*.user
|
||||
|
|
@ -30,6 +30,7 @@
|
|||
#include "AuthSocket.h"
|
||||
#include "SystemConfig.h"
|
||||
#include "revision.h"
|
||||
#include "revision_nr.h"
|
||||
#include "Util.h"
|
||||
|
||||
#ifdef WIN32
|
||||
|
|
@ -150,7 +151,7 @@ extern int main(int argc, char **argv)
|
|||
while (pause > clock()) {}
|
||||
}
|
||||
|
||||
sLog.outString( "%s [realm-daemon]", _FULLVERSION(REVISION_DATE,REVISION_TIME,REVISION_ID) );
|
||||
sLog.outString( "%s [realm-daemon]", _FULLVERSION(REVISION_DATE,REVISION_TIME,REVISION_NR,REVISION_ID) );
|
||||
sLog.outString( "<Ctrl-C> to stop.\n" );
|
||||
|
||||
/// realmd PID file creation
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "6801"
|
||||
#define REVISION_NR "6802"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue