Changeset 7676e68d7f5a3da50e1417ca9e142925a3b43040
- Timestamp:
- 05/01/08 12:57:16
(2 months ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1209639436 +0200
- git-parent:
[4d2de3f731e49074a54201682a7fd876522f7c7e]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1209639421 +0200
- Message:
Fixed the compilation of multiple Mac OS X related modules
by using VLC_ADD_PLUGIN instead of VLC_ADD_BUILTINS.
Please check for potential regressions.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r58b7617 |
r7676e68 |
|
| 4889 | 4889 | then |
|---|
| 4890 | 4890 | AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, |
|---|
| 4891 | | [ VLC_ADD_BUILTINS([auhal]) |
|---|
| | 4891 | [ VLC_ADD_PLUGIN([auhal]) |
|---|
| 4892 | 4892 | VLC_ADD_LDFLAGS([auhal],[-Wl,-framework,CoreAudio,-framework,AudioUnit,-framework,AudioToolbox,-framework,Carbon]) |
|---|
| 4893 | 4893 | ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ]) |
|---|
| … | … | |
| 5494 | 5494 | |
|---|
| 5495 | 5495 | # VLC_ADD_PLUGIN([access_eyetv]) |
|---|
| 5496 | | VLC_ADD_BUILTINS([macosx minimal_macosx]) |
|---|
| | 5496 | VLC_ADD_PLUGIN([macosx]) |
|---|
| | 5497 | VLC_ADD_PLUGIN([minimal_macosx]) |
|---|
| 5497 | 5498 | |
|---|
| 5498 | 5499 | ORIGCFLAGS=$CFLAGS |
|---|
| … | … | |
| 5639 | 5640 | if test -f "${real_goom_tree}/src/.libs/libgoom2.a"; then |
|---|
| 5640 | 5641 | AC_MSG_RESULT(${real_goom_tree}/src/.libs/libgoom2.a) |
|---|
| 5641 | | VLC_ADD_BUILTINS([goom]) |
|---|
| | 5642 | VLC_ADD_PLUGIN([goom]) |
|---|
| 5642 | 5643 | VLC_ADD_LIBS([goom],[-L${real_goom_tree}/src/.libs -lgoom2]) |
|---|
| 5643 | 5644 | VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree}/src -DUSE_GOOM_TREE]) |
|---|
| … | … | |
| 5648 | 5649 | if test -f "${real_goom_tree}/libgoom.a"; then |
|---|
| 5649 | 5650 | AC_MSG_RESULT(${real_goom_tree}/libgoom.a) |
|---|
| 5650 | | VLC_ADD_BUILTINS([goom]) |
|---|
| | 5651 | VLC_ADD_PLUGIN([goom]) |
|---|
| 5651 | 5652 | VLC_ADD_LIBS([goom],[-L${real_goom_tree} -lgoom]) |
|---|
| 5652 | 5653 | VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree} -DUSE_GOOM_TREE -DOLD_GOOM]) |
|---|