Changeset f56300d5e8f0fbbccadddf4c17460b8a58d4114c
- Timestamp:
- 09/15/07 19:41:19
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1189878079 +0000
- git-parent:
[e7b6ffc1681e4e60c02510ae0f1f92cdec88ac36]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1189878079 +0000
- Message:
Another MacOS compile fix
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf02445b |
rf56300d |
|
| 148 | 148 | { |
|---|
| 149 | 149 | #ifdef __APPLE__ |
|---|
| | 150 | # warning FIXME |
|---|
| | 151 | #if 0 |
|---|
| 150 | 152 | NSAutoreleasePool * o_pool; |
|---|
| 151 | 153 | |
|---|
| 152 | 154 | /* If !clivlc, then run as a OS X application */ |
|---|
| 153 | | if( p_intf->b_block && strncmp( p_intf->p_libvlc->psz_object_name, |
|---|
| 154 | | "clivlc", 6) ) |
|---|
| | 155 | if( strncmp( p_intf->p_libvlc->psz_object_name, "clivlc", 6) ) |
|---|
| 155 | 156 | { |
|---|
| 156 | 157 | o_pool = [[NSAutoreleasePool alloc] init]; |
|---|
| … | … | |
| 167 | 168 | } |
|---|
| 168 | 169 | vlc_object_kill( p_intf ); |
|---|
| 169 | | } |
|---|
| 170 | | else |
|---|
| | 170 | return VLC_SUCCESS; |
|---|
| | 171 | } |
|---|
| | 172 | #endif |
|---|
| 171 | 173 | #endif |
|---|
| 172 | 174 | |
|---|