From: <dg...@su...> - 2009-02-17 10:55:28
|
Author: bricks Date: Tue Feb 17 11:52:55 2009 New Revision: 5269 URL: http://www.opensync.org/changeset/5269 Log: Bugfix: fixed copy&paste mistake Modified: branches/3rd-party-cmake-modules/modules/FindBlueZ.cmake Modified: branches/3rd-party-cmake-modules/modules/FindBlueZ.cmake ============================================================================== --- branches/3rd-party-cmake-modules/modules/FindBlueZ.cmake Fri Feb 13 13:33:18 2009 (r5268) +++ branches/3rd-party-cmake-modules/modules/FindBlueZ.cmake Tue Feb 17 11:52:55 2009 (r5269) @@ -6,7 +6,7 @@ # BLUEZ_LIBRARIES List of libaries to use BlueZ # # Copyright (c) 2007 Daniel Gollub <dg...@su...> -# Copyright (c) 2007 Bjoern Ricks <b....@fh...> +# Copyright (c) 2007-2009 Bjoern Ricks <bjo...@gm...> # # Redistribution and use is allowed according to the terms of the New # BSD license. @@ -16,11 +16,11 @@ INCLUDE( FindPkgConfig ) # Take care about bluez.pc settings -IF ( LibWbxml2_FIND_REQUIRED ) +IF ( BlueZ_FIND_REQUIRED ) SET( _pkgconfig_REQUIRED "REQUIRED" ) -ELSE( LibWbxml2_FIND_REQUIRED ) +ELSE( BlueZ_FIND_REQUIRED ) SET( _pkgconfig_REQUIRED "" ) -ENDIF ( LibWbxml2_FIND_REQUIRED ) +ENDIF ( BlueZ_FIND_REQUIRED ) IF ( BLUEZ_MIN_VERSION ) PKG_SEARCH_MODULE( BLUEZ ${_pkgconfig_REQUIRED} bluez>=${BLUEZ_MIN_VERSION} ) |