mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 15:39:27 -05:00
Fixed compile on Windows.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3996 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
55ae64a277
commit
91c2c0e4bf
@ -137,10 +137,6 @@ PUBLIC_HEADERS = retroshare/rsblogs.h \
|
||||
|
||||
HEADERS += $$PUBLIC_HEADERS
|
||||
|
||||
DEFINES *= UBUNTU
|
||||
INCLUDEPATH += /usr/include/glib-2.0/ /usr/lib/glib-2.0/include
|
||||
LIBS *= -lgnome-keyring
|
||||
|
||||
# public headers to be...
|
||||
HEADERS += retroshare/rsgame.h \
|
||||
retroshare/rsphoto.h
|
||||
@ -185,6 +181,10 @@ linux-* {
|
||||
INSTALLS += include_rsiface
|
||||
|
||||
#CONFIG += version_detail_bash_script
|
||||
|
||||
DEFINES *= UBUNTU
|
||||
INCLUDEPATH += /usr/include/glib-2.0/ /usr/lib/glib-2.0/include
|
||||
LIBS *= -lgnome-keyring
|
||||
}
|
||||
|
||||
linux-g++ {
|
||||
|
@ -7,8 +7,9 @@ uint32_t RSRandom::index = 0 ;
|
||||
std::vector<uint32_t> RSRandom::MT(RSRandom::N,0u) ;
|
||||
RsMutex RSRandom::rndMtx ;
|
||||
|
||||
// If this does not compile on windows, use a ifdef to keep this on linux plz.
|
||||
#ifdef UBUNTU
|
||||
static bool auto_seed = RSRandom::seed( (time(NULL) + pthread_self()*0x1293fe + (getpid()^0x113ef76b))^0x18e34a12 ) ;
|
||||
#endif
|
||||
|
||||
bool RSRandom::seed(uint32_t s)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user