Changeset 5cc5eba266f423eaf13bdae36ea2d031bdcd9d3a
- Timestamp:
- 17/07/03 18:34:40
(5 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1058459680 +0000
- git-parent:
[e397e422bbc537435688441c173d550e251bf3a3]
- git-author:
- Sam Hocevar <sam@videolan.org> 1058459680 +0000
- Message:
- Makefile.am: Parse mozilla after . so that the mozilla plugin gets its
dependencies right.
- src/stream_output/announce.c: Compilation fix.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8c7b5a8 |
r5cc5eba |
|
| 8 | 8 | # something. DIST_SUBDIRS stores the directories where nothing is built but |
|---|
| 9 | 9 | # which have makefiles with distribution information. |
|---|
| 10 | | SUBDIRS = intl modules mozilla . share po m4 |
|---|
| | 10 | SUBDIRS = intl modules . mozilla share po m4 |
|---|
| 11 | 11 | DIST_SUBDIRS = $(SUBDIRS) src debian doc ipkg lib autotools |
|---|
| 12 | 12 | |
|---|
| r0878dc5 |
r5cc5eba |
|
| 289 | 289 | |
|---|
| 290 | 290 | #if defined( UNDER_CE ) |
|---|
| 291 | | i_ret = CloseHandle( (HANDLE)p_sap->i_handle ); |
|---|
| | 291 | i_ret = CloseHandle( (HANDLE)p_sap->i_socket ); |
|---|
| 292 | 292 | #elif defined( WIN32 ) |
|---|
| 293 | | i_ret = closesocket( p_sap->i_handle ); |
|---|
| | 293 | i_ret = closesocket( p_sap->i_socket ); |
|---|
| 294 | 294 | #else |
|---|
| 295 | | i_ret = close( p_sap->i_handle ); |
|---|
| | 295 | i_ret = close( p_sap->i_socket ); |
|---|
| 296 | 296 | #endif |
|---|
| 297 | 297 | |
|---|