Changes between Initial Version and Version 5 of Ticket #14590
- Timestamp:
- Jul 22, 2010, 2:50:00 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14590
-
Property
Status
changed from
new
toreopened
- Property Keywords liboss removed
- Property Owner changed from macports-tickets@… to pguyot@…
- Property Port liboss added
-
Property
Status
changed from
-
Ticket #14590 – Description
initial v5 1 1 Beginning on line 341 of soundcard.h, several system functions are redefined, such as follows: 2 2 3 {{{ 3 4 #ifndef LIBOSS_IOCTL 4 5 # define LIBOSS_IOCTL ioctl 5 6 #endif 6 7 }}} 8 7 9 ... 8 10 11 {{{ 9 12 static inline int LIBOSS_IOCTL (int x, unsigned long y,...) 13 }}} 10 14 11 15 This causes compilation errors in code including that file, such as: 12 16 {{{ 13 17 /opt/local/include/liboss/soundcard.h:342: error: static declaration of ‘ioctl’ follows non-static declaration 14 18 /usr/include/sys/ioctl.h:97: error: previous declaration of ‘ioctl’ was here 19 }}}