Changeset 47902e37d9e3bd16c9d66d0e529250bf40b6a4de

Show
Ignore:
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
  • configure.ac

    r4815d7f r47902e3  
    14231423AH_TEMPLATE(NDEBUG, 
    14241424            [Define to 1 if debug code should NOT be compiled]) 
    1425 AS_IF([test "x${enable_debug}" == "xno"], [AC_DEFINE(NDEBUG)]) 
     1425AS_IF([test "x${enable_debug}" = "xno"], [AC_DEFINE(NDEBUG)]) 
    14261426 
    14271427dnl 
     
    42664266      LIBS="${LIBS_save}" 
    42674267      dnl should not happen - otherwise this needs fixing - hence FAILURE 
    4268       AS_IF([test "${LIBS_cclink}" == "no"], 
     4268      AS_IF([test "${LIBS_cclink}" = "no"], 
    42694269        [AC_MSG_FAILURE([cannot find XML parser for CyberLink])]) 
    42704270      AC_MSG_RESULT([${LIBS_cclink}]) 
     
    42884288AS_IF([test "x${enable_upnp}" != "xno"], [ 
    42894289  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"], [ 
    42914291    AC_MSG_ERROR([cannot find Intel UPnP SDK (libupnp)]) 
    42924292  ]) 
    4293   AS_IF([test "${has_upnp}" == "yes"], [ 
     4293  AS_IF([test "${has_upnp}" = "yes"], [ 
    42944294    VLC_ADD_LDFLAGS([upnp_intel], [-lupnp]) 
    42954295  ]) 
     
    42984298]) 
    42994299 
    4300 AS_IF([test "${has_upnp}" == "yes"], [ 
     4300AS_IF([test "${has_upnp}" = "yes"], [ 
    43014301  VLC_ADD_PLUGINS([upnp_intel]) 
    43024302])