# HG changeset patch # User Rik # Date 1357186708 28800 # Node ID 84b38d6442e685ebc1f57f309f3c43f0c8c55447 # Parent c18692212b90a0d8a4b1e7daf2d2639d0e87600a configure.ac: Replace uses of 'true' as a command. * configure.ac: Replace uses of 'true' as a command. diff -r c18692212b90 -r 84b38d6442e6 configure.ac --- a/configure.ac Wed Jan 02 17:15:57 2013 -0800 +++ b/configure.ac Wed Jan 02 20:18:28 2013 -0800 @@ -1420,9 +1420,7 @@ esac], [ENABLE_DYNAMIC_LINKING=true]) -if $STATIC_LIBS || $SHARED_LIBS; then - true -else +if ! $STATIC_LIBS && ! $SHARED_LIBS; then AC_MSG_ERROR([You can't disable building static AND shared libraries!]) fi @@ -1786,7 +1784,7 @@ ## Disable dynamic linking if capability is not present. if $dlopen_api || $shl_load_api || $loadlibrary_api || $dyld_api; then - true + : # some form of dynamic linking present else ENABLE_DYNAMIC_LINKING=false fi