diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2012-04-10 21:41:34 +0000 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-04-12 01:34:05 +0200 |
commit | 2639566c6e625c7e5b0f2cb1ad2c58d0aeac2530 (patch) | |
tree | 6d3623ef611c402d7c133942e4973fc4d7708295 /common.gypi | |
parent | 3694b6914a68e655c51a3d3ba8f538231bf07d1e (diff) | |
download | node-2639566c6e625c7e5b0f2cb1ad2c58d0aeac2530.tar.gz |
build: configure openssl
* compile with -DOPENSSL_NO_SOCK and -DOPENSSL_NO_DGRAM, we don't need it
* compile with -DOPENSSL_NO_GOST and -DOPENSSL_NO_HW_PADLOCK, works around the
brain dead linker on solaris and maybe others
* compile with -DTERMIOS, OS X doesn't have <termio.h>
* compile with -D__EXTENSIONS__ on solaris, makes siginfo_t available
* compile without -ansi on linux, it hides a number of POSIX declarations
(sigaction, NI_MAXHOST, etc.)
Diffstat (limited to 'common.gypi')
-rw-r--r-- | common.gypi | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common.gypi b/common.gypi index ac5a44476..5dde273f6 100644 --- a/common.gypi +++ b/common.gypi @@ -146,7 +146,6 @@ 'ldflags': [ '-m32' ], }], [ 'OS=="linux"', { - 'cflags': [ '-ansi' ], 'ldflags': [ '-rdynamic' ], }], [ 'OS=="solaris"', { |