diff options
author | mike <mike@FreeBSD.org> | 2002-09-30 17:14:26 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-09-30 17:14:26 +0000 |
commit | 3264749d81dcb91903b58d22830f020d8bfe348b (patch) | |
tree | cf452fbd1c20f40e2107ba65ea4130544b9d8493 /include/Makefile | |
parent | 20fda376891a6347e6707ebaef64972701863166 (diff) | |
download | FreeBSD-src-3264749d81dcb91903b58d22830f020d8bfe348b.zip FreeBSD-src-3264749d81dcb91903b58d22830f020d8bfe348b.tar.gz |
Don't install mqueue.h, since it only makes things harder for porting
software when you provide prototypes for non-existent functions.
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/Makefile b/include/Makefile index 7705b37..0212d8d 100644 --- a/include/Makefile +++ b/include/Makefile @@ -26,8 +26,9 @@ INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h ctype.h db.h \ MHDRS= float.h floatingpoint.h stdarg.h varargs.h -# posix4/aio.h conflicts with dysons and isn't installed: -PHDRS= mqueue.h sched.h semaphore.h _semaphore.h # aio.h +# posix4/aio.h conflicts with dysons and isn't installed, +# posix4/mqueue.h is useless without an implementation and isn't installed: +PHDRS= sched.h semaphore.h _semaphore.h # aio.h mqueue.h LHDRS= aio.h errno.h fcntl.h linker_set.h poll.h stdint.h syslog.h \ termios.h ucontext.h |