diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-30 22:03:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-30 22:10:17 +0300 |
commit | e4d5d0f0333e8b7faedff57b3641430dd5e4eaa4 (patch) | |
tree | 06c153449d195321829974e966fdc9c7b80ac1ba /src/main.h | |
parent | 4d2b3cae0ab00d1ef832f11d14bd299d6d5c2a6b (diff) | |
download | plus-e4d5d0f0333e8b7faedff57b3641430dd5e4eaa4.tar.gz plus-e4d5d0f0333e8b7faedff57b3641430dd5e4eaa4.tar.bz2 plus-e4d5d0f0333e8b7faedff57b3641430dd5e4eaa4.tar.xz plus-e4d5d0f0333e8b7faedff57b3641430dd5e4eaa4.zip |
add support for nacl detection in client version.
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h index 70ad551c8..7f5d05ae4 100644 --- a/src/main.h +++ b/src/main.h @@ -76,6 +76,8 @@ || defined WIN64 || defined _WIN64 || defined __WIN64__ \ || defined __MINGW32__ || defined _MSC_VER #define PACKAGE_OS "Windows" +#elif defined __native_client__ +#define PACKAGE_OS "nacl" #else #define PACKAGE_OS "Other" #endif |