Changeset bb5b426170b2a666f4e132e2e62511abf922b6d0
- Timestamp:
- 02/26/08 03:11:57
(6 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1203991917 +0000
- git-parent:
[28a41153e77335041ff45992e92e49f354b6f780]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1203991917 +0000
- Message:
configure.ac: Backport the Mac OS X poll fix from cmake to autotools.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6de4ef9 |
rbb5b426 |
|
| 798 | 798 | ]) |
|---|
| 799 | 799 | |
|---|
| 800 | | AC_SEARCH_LIBS(poll, [poll], [AC_DEFINE(HAVE_POLL, 1, [Define to 1 if the OS is usabl... err, has poll().])]) |
|---|
| | 800 | dnl don't attemp to use poll on darwin, it can't poll a tty. select will do a better job. |
|---|
| | 801 | if test "${SYS}" != "darwin"; then |
|---|
| | 802 | AC_SEARCH_LIBS(poll, [poll], [AC_DEFINE(HAVE_POLL, 1, [Define to 1 if the OS is usabl... err, has poll().])]) |
|---|
| | 803 | fi |
|---|
| 801 | 804 | |
|---|
| 802 | 805 | dnl Check for dirent |
|---|
| … | … | |
| 5333 | 5336 | if test "x${enable_macosx}" = "xyes" |
|---|
| 5334 | 5337 | then |
|---|
| 5335 | | VLC_ADD_LDFLAGS([access_eyetv], [-Wl,-framework,Foundation]) |
|---|
| | 5338 | # VLC_ADD_LDFLAGS([access_eyetv], [-Wl,-framework,Foundation]) |
|---|
| 5336 | 5339 | VLC_ADD_LDFLAGS([macosx minimal_macosx opengllayer],[-Wl,-framework,Cocoa]) |
|---|
| 5337 | 5340 | VLC_ADD_LDFLAGS([macosx minimal_macosx opengllayer],[-Wl,-framework,OpenGL]) |
|---|
| … | … | |
| 5345 | 5348 | VLC_ADD_OBJCFLAGS([macosx minimal_macosx opengllayer growl], [-fobjc-exceptions] ) |
|---|
| 5346 | 5349 | |
|---|
| 5347 | | VLC_ADD_PLUGINS([access_eyetv]) |
|---|
| | 5350 | # VLC_ADD_PLUGINS([access_eyetv]) |
|---|
| 5348 | 5351 | VLC_ADD_BUILTINS([macosx minimal_macosx]) |
|---|
| 5349 | 5352 | |
|---|