diff options
author | Björn-Egil Dahlberg <[email protected]> | 2010-02-22 16:22:42 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-02-22 16:22:42 +0000 |
commit | f70060987d50c0341b7a9337cf60c836d66a3d9c (patch) | |
tree | 1206f688cd6bc1b97faef2146703a86c2a6c5154 /lib | |
parent | de10358cc220cb2f96545bca2218470e153824b6 (diff) | |
download | otp-f70060987d50c0341b7a9337cf60c836d66a3d9c.tar.gz otp-f70060987d50c0341b7a9337cf60c836d66a3d9c.tar.bz2 otp-f70060987d50c0341b7a9337cf60c836d66a3d9c.zip |
OTP-8466: Fix ei to build on vxworks
Diffstat (limited to 'lib')
-rw-r--r-- | lib/erl_interface/src/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/erl_interface/src/Makefile.in b/lib/erl_interface/src/Makefile.in index ec094789ce..8ff142a366 100644 --- a/lib/erl_interface/src/Makefile.in +++ b/lib/erl_interface/src/Makefile.in @@ -568,12 +568,14 @@ ifeq ($(findstring vxworks,$(TARGET)),vxworks) $(TARGET)/config.h: echo "/* Generated by Makefile */" > $@ echo "#define HAVE_STRERROR 1" >> $@ + echo "#define HAVE_SOCKLEN_T 1" >> $@ endif ifeq ($(findstring ose,$(TARGET)),ose) $(TARGET)/config.h: echo "/* Generated by Makefile */" > $@ echo "#define HAVE_STRERROR 1" >> $@ + echo "#define HAVE_SOCKLEN_T 1" >> $@ endif ########################################################################### |