Changeset 47902e37d9e3bd16c9d66d0e529250bf40b6a4de
- Timestamp:
- 14/05/06 09:01:20
(3 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1147590080 +0000
- git-parent:
[8d19624ee75463ac9bdd89cb07bdec9f7b283891]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1147590080 +0000
- Message:
== -> =
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4815d7f |
r47902e3 |
|
| 1423 | 1423 | AH_TEMPLATE(NDEBUG, |
|---|
| 1424 | 1424 | [Define to 1 if debug code should NOT be compiled]) |
|---|
| 1425 | | AS_IF([test "x${enable_debug}" == "xno"], [AC_DEFINE(NDEBUG)]) |
|---|
| | 1425 | AS_IF([test "x${enable_debug}" = "xno"], [AC_DEFINE(NDEBUG)]) |
|---|
| 1426 | 1426 | |
|---|
| 1427 | 1427 | dnl |
|---|
| … | … | |
| 4266 | 4266 | LIBS="${LIBS_save}" |
|---|
| 4267 | 4267 | dnl should not happen - otherwise this needs fixing - hence FAILURE |
|---|
| 4268 | | AS_IF([test "${LIBS_cclink}" == "no"], |
|---|
| | 4268 | AS_IF([test "${LIBS_cclink}" = "no"], |
|---|
| 4269 | 4269 | [AC_MSG_FAILURE([cannot find XML parser for CyberLink])]) |
|---|
| 4270 | 4270 | AC_MSG_RESULT([${LIBS_cclink}]) |
|---|
| … | … | |
| 4288 | 4288 | AS_IF([test "x${enable_upnp}" != "xno"], [ |
|---|
| 4289 | 4289 | AC_CHECK_LIB([upnp], [UpnpInit], [has_upnp="yes"], [has_upnp="no"], [-lpthread]) |
|---|
| 4290 | | AS_IF([test "x${enable_upnp}" != "x" && test "${has_upnp}" == "no"], [ |
|---|
| | 4290 | AS_IF([test "x${enable_upnp}" != "x" && test "${has_upnp}" = "no"], [ |
|---|
| 4291 | 4291 | AC_MSG_ERROR([cannot find Intel UPnP SDK (libupnp)]) |
|---|
| 4292 | 4292 | ]) |
|---|
| 4293 | | AS_IF([test "${has_upnp}" == "yes"], [ |
|---|
| | 4293 | AS_IF([test "${has_upnp}" = "yes"], [ |
|---|
| 4294 | 4294 | VLC_ADD_LDFLAGS([upnp_intel], [-lupnp]) |
|---|
| 4295 | 4295 | ]) |
|---|
| … | … | |
| 4298 | 4298 | ]) |
|---|
| 4299 | 4299 | |
|---|
| 4300 | | AS_IF([test "${has_upnp}" == "yes"], [ |
|---|
| | 4300 | AS_IF([test "${has_upnp}" = "yes"], [ |
|---|
| 4301 | 4301 | VLC_ADD_PLUGINS([upnp_intel]) |
|---|
| 4302 | 4302 | ]) |
|---|