version 1.00

This commit is contained in:
Olaf Rempel 2006-04-15 20:09:55 +02:00
parent 17f64ec0f9
commit 65bc7cd5e0
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
CFLAGS := -O2 -pipe -Wall VERSION := '"v1.00"'
CXXFLAGS := -O2 -pipe -Wall -Wunused -Wno-deprecated
CFLAGS := -O2 -pipe -Wall -DVERSION=$(VERSION)
CXXFLAGS := -O2 -pipe -Wall -Wunused -Wno-deprecated -DVERSION=$(VERSION)
LIBS := -lpthread LIBS := -lpthread
HLSWMASTER_SRC := config.o gameentry.o gamelist.o gameparser.o gamescanner.o \ HLSWMASTER_SRC := config.o gameentry.o gamelist.o gameparser.o gamescanner.o \

View File

@ -87,7 +87,7 @@ int main(int argc, char *argv[])
LogSystem::init(logprio, new StdErrLog()); LogSystem::init(logprio, new StdErrLog());
} }
LogSystem::log(LOG_EVERYTIME, "hlswmaster-ng startup (pid:%d)", getpid()); LogSystem::log(LOG_EVERYTIME, "hlswmaster-ng %s startup (pid:%d)", VERSION, getpid());
conf.show(); conf.show();
RecvQueue rxQueue; RecvQueue rxQueue;