diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-28 21:00:48 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-12-07 15:38:18 +0100 |
commit | 2e43e93b78786c42828867057818888c306ded1f (patch) | |
tree | 613d1987fc48d0f152d6b366d9510834c2b28060 /trans | |
parent | b0ed6c9379dc680047def564fbc0ba04dff8d50b (diff) |
trans/symlink: disable default payload to port mapping
`fsysServer' is only used by the symlink translator which does not use
libports. Therefor, it is not necessary to use the default payload to
port translation function.
* trans/Makefile (fsys-MIGSFLAGS): Disable the default payload to port
translation function.
Diffstat (limited to 'trans')
-rw-r--r-- | trans/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/trans/Makefile b/trans/Makefile index b6edb97b..ce1eae7a 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -47,6 +47,10 @@ ifsock-MIGSFLAGS=\ # device_replyServer is used by the streamio translator. device_reply-MIGSFLAGS="-DMACH_PAYLOAD_TO_PORT=ports_payload_get_name" +# fsysServer is only used by the symlink translator which does not use +# libports. Disable the default payload to port conversion. +fsys-MIGSFLAGS = "-DHURD_DEFAULT_PAYLOAD_TO_PORT=1" + include ../Makeconf vpath elfcore.c $(top_srcdir)/exec |