Changeset 249229af3260e94e3b034aad037b55f717ac5df8
- Timestamp:
- 02/03/08 19:30:25
(7 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1202063425 +0000
- git-parent:
[af48cdef474e0eae17176df30dc5624aeea8c077]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1202063425 +0000
- Message:
We don't check for limits.h, so don't use HAVE_LIMITS_H
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
r249229a |
|
| 64 | 64 | |
|---|
| 65 | 65 | /* In Solaris (and perhaps others) PATH_MAX is in limits.h. */ |
|---|
| 66 | | #ifdef HAVE_LIMITS_H |
|---|
| 67 | | # include <limits.h> |
|---|
| 68 | | #endif |
|---|
| | 66 | #include <limits.h> |
|---|
| 69 | 67 | |
|---|
| 70 | 68 | #ifdef __APPLE__ |
|---|
| r39d272d |
r249229a |
|
| 37 | 37 | #include <QLabel> |
|---|
| 38 | 38 | |
|---|
| 39 | | #ifdef HAVE_LIMITS_H |
|---|
| 40 | | # include <limits.h> |
|---|
| 41 | | #endif |
|---|
| | 39 | #include <limits.h> |
|---|
| 42 | 40 | |
|---|
| 43 | 41 | #define setSpinBounds( spinbox ) { \ |
|---|
| r39d272d |
r249229a |
|
| 44 | 44 | #include "components/preferences_widgets.hpp" |
|---|
| 45 | 45 | |
|---|
| 46 | | #ifdef HAVE_LIMITS_H |
|---|
| 47 | | # include <limits.h> |
|---|
| 48 | | #endif |
|---|
| | 46 | #include <limits.h> |
|---|
| 49 | 47 | |
|---|
| 50 | 48 | #define setSpinBoxFreq( spinbox ){ spinbox->setRange ( 0, INT_MAX ); \ |
|---|
| r99fab90 |
r249229a |
|
| 47 | 47 | #endif |
|---|
| 48 | 48 | |
|---|
| 49 | | #ifdef HAVE_LIMITS_H |
|---|
| 50 | | # include <limits.h> /* PATH_MAX */ |
|---|
| 51 | | #endif |
|---|
| | 49 | #include <limits.h> /* PATH_MAX */ |
|---|
| 52 | 50 | |
|---|
| 53 | 51 | |
|---|
| r733a686 |
r249229a |
|
| 34 | 34 | |
|---|
| 35 | 35 | #include <math.h> |
|---|
| 36 | | |
|---|
| 37 | | #ifdef HAVE_LIMITS_H |
|---|
| 38 | | # include <limits.h> /* INT_MAX */ |
|---|
| 39 | | #endif |
|---|
| | 36 | #include <limits.h> /* INT_MAX */ |
|---|
| 40 | 37 | |
|---|
| 41 | 38 | #include "vlc_filter.h" |
|---|
| r99fab90 |
r249229a |
|
| 32 | 32 | |
|---|
| 33 | 33 | #include <errno.h> /* errno */ |
|---|
| 34 | | |
|---|
| 35 | | #ifdef HAVE_LIMITS_H |
|---|
| 36 | | # include <limits.h> |
|---|
| 37 | | #endif |
|---|
| | 34 | #include <limits.h> |
|---|
| 38 | 35 | |
|---|
| 39 | 36 | #ifdef HAVE_UNISTD_H |
|---|
| r1b09c02 |
r249229a |
|
| 34 | 34 | #include <stdbool.h> |
|---|
| 35 | 35 | #include <assert.h> |
|---|
| 36 | | |
|---|
| 37 | | #ifdef HAVE_LIMITS_H |
|---|
| 38 | | # include <limits.h> |
|---|
| 39 | | #endif |
|---|
| | 36 | #include <limits.h> |
|---|
| 40 | 37 | |
|---|
| 41 | 38 | #include "configuration.h" |
|---|
| r99fab90 |
r249229a |
|
| 40 | 40 | #endif |
|---|
| 41 | 41 | |
|---|
| 42 | | #ifdef HAVE_LIMITS_H |
|---|
| 43 | | # include <limits.h> |
|---|
| 44 | | #endif |
|---|
| | 42 | #include <limits.h> |
|---|
| 45 | 43 | |
|---|
| 46 | 44 | #ifdef HAVE_UNISTD_H |
|---|