mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Install a symlink for <machine/soundcard.h> -> <sys/soundcard.h> rather
than having stubs. (OK'ed by dfr)
This commit is contained in:
parent
978f5d6c5d
commit
df791b1e94
1 changed files with 5 additions and 0 deletions
|
|
@ -36,6 +36,8 @@ MFILES= float.h floatingpoint.h stdarg.h varargs.h
|
|||
PFILES= mqueue.h sched.h semaphore.h \
|
||||
# aio.h
|
||||
|
||||
SFILES= soundcard.h
|
||||
|
||||
LFILES= aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h termios.h
|
||||
|
||||
LDIRS= cam msdosfs net netatalk netatm netinet netipx netkey netns nfs \
|
||||
|
|
@ -88,6 +90,9 @@ beforeinstall: ${SHARED}
|
|||
.for i in ${PFILES}
|
||||
ln -sf posix4/$i ${DESTDIR}/usr/include/$i
|
||||
.endfor
|
||||
.for i in ${SFILES}
|
||||
ln -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i
|
||||
.endfor
|
||||
|
||||
copies:
|
||||
.for i in ${LDIRS} ${LNOHEADERDIRS} machine
|
||||
|
|
|
|||
Loading…
Reference in a new issue