Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 May 2009 23:06:36 -0700
From:      "David P. Discher" <dpd@dpdtech.com>
To:        bsdkaffee@gmail.com
Cc:        ports@FreeBSD.org
Subject:   FreeBSD Port: libmusicbrainz3-3.0.2_1 - FindNeon.cmake hard codes /usr/local 
Message-ID:  <706B7AE4-ECC8-40FA-ABF6-91FECB64C177@dpdtech.com>

next in thread | raw e-mail | index | archive | help
libmusicbrainz3 FindNeon.cmake file hard codes '/usr/local' instead of  
respecting LOCALBASE or PREFIX.  This is being passed to cmake,

Apparently a reversed diff, but the patch is as follows :


 > diff -u cmake/modules/FindNeon.cmake cmake/modules/ 
FindNeon.cmake.orig
--- cmake/modules/FindNeon.cmake        2009-05-19 22:59:07.000000000  
-0700
+++ cmake/modules/FindNeon.cmake.orig   2009-05-19 22:58:01.000000000  
-0700
@@ -4,13 +4,13 @@
  FIND_PATH(NEON_INCLUDE_DIR ne_request.h
      ${_NeonIncDir}
      /usr/include/neon
-    ${CMAKE_INSTALL_PREFIX}/include/neon
+    /usr/local/include/neon
  )

  FIND_LIBRARY(NEON_LIBRARIES neon
      ${_NeonLinkDir}
      /usr/lib
-    ${CMAKE_INSTALL_PREFIX}/lib
+    /usr/local/lib
  )

  IF (NEON_INCLUDE_DIR AND NEON_LIBRARIES)




-----------------------------------------------------------------------
David P. Discher  * <http://davidpdischer.com/>;     * C: 408.368.3725
<dpd@dpdtech.com> *  AIM: DavidDPD | Y!M: daviddpdz * H: 408.541.0159
-----------------------------------------------------------------------






Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?706B7AE4-ECC8-40FA-ABF6-91FECB64C177>