]> git.uio.no Git - u/mrichter/AliRoot.git/blob - cmake/FindDATE.cmake
Correct value for ROOT_HAS*
[u/mrichter/AliRoot.git] / cmake / FindDATE.cmake
1 # **************************************************************************
2 # * Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. *
3 # *                                                                        *
4 # * Author: The ALICE Off-line Project.                                    *
5 # * Contributors are mentioned in the code where appropriate.              *
6 # *                                                                        *
7 # * Permission to use, copy, modify and distribute this software and its   *
8 # * documentation strictly for non-commercial purposes is hereby granted   *
9 # * without fee, provided that the above copyright notice appears in all   *
10 # * copies and that both the copyright notice and this permission notice   *
11 # * appear in the supporting documentation. The authors make no claims     *
12 # * about the suitability of this software for any purpose. It is          *
13 # * provided "as is" without express or implied warranty.                  *
14 # **************************************************************************
15
16 # Find DATE DAQ installation using date-config
17 # Requires: 
18 #       - date-config has to be found in the PATH
19 #       - Environment variables
20 #               - DATE_ROOT // try to not use
21 #               - DATE_COMMON_DEFS // try to not use
22 #               - DATE_MONITOR_DIR //try not to use
23 # - DATE_VERSION - DATE version as reported by date-config
24 # - DATE_VERSION_MAJOR
25 # - DATE_VERSIOM_MINOR
26 # - DATE_CONFIG - path to date-config script
27 # - DATE_CFLAGS - cflags reported by date-config
28 # - DATE_LDFLAGS - ldflags reported by date-config
29 # - DATE_LIBS - DATE libs to be linked against to reported by date-config --libs
30 # - DATE_LIBRARIES - DATE libs as as list as extracted from date-config --libs
31 # - DATE_MONLIBS - static monitorlibs reported by date-config --monitorlibs without shift
32 # - DATE_DYNMONLIBS - dynamic monitorlibs reported by date-config --monitorlibs without shift
33 # - DATE_MONLIBRARIES - DATE monitor libs as a list extracted from the date-config --monitorlibs
34 # - DATE_STATICMON - DATE static monitor libs needed by the DA
35 # - DATE_RCPROXYLIBS - rcproxylibs reported by date-config --rcproxylibs
36 # - DATE_RCPROXYLIBRARIES - rcproxylibs as a list as extracted from date-config --rcproxylibs
37
38 #########################
39 # Functions definitions
40 #########################
41
42 # A function to find all the libraries listed in library_list. The list contains the short
43 # names of libraries (ie. Db instead of libDb.so). 
44 # Libraries are search in library_paths. 
45 # It returns the list of libraries, with full path and full name.
46 # Author: Barthelemy Von Haller
47 function(find_date_libraries _output library_list library_paths)
48     FOREACH (LIB ${library_list})
49         # Find first static, this is used by the DA
50         find_library(DATE_LIBRARY_${LIB} NAMES "lib${LIB}.a" PATHS ${library_paths})
51         
52         if(NOT DATE_LIBRARY_${LIB})
53             find_library(DATE_LIBRARY_${LIB} NAMES ${LIB}  PATHS ${library_paths})
54         endif()
55         
56         mark_as_advanced(DATE_LIBRARY_${LIB})
57         set(_output_tmp ${_output_tmp} ${DATE_LIBRARY_${LIB}})
58     ENDFOREACH (LIB ${library_list})
59     
60     set(${_output} ${_output_tmp} PARENT_SCOPE)
61 endfunction(find_date_libraries _output library_list library_paths)
62
63 # DATE_CONFIG set from the configuration
64 if(DATE_CONFIG)
65     # Checking DATE version
66     execute_process(COMMAND ${DATE_CONFIG} --version OUTPUT_VARIABLE DATE_VERSION ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
67     if(error)
68         message(FATAL_ERROR "Error retrieving DATE version : ${error}")
69     endif(error)
70     string(STRIP ${DATE_VERSION} DATE_VERSION)
71
72     # Extract major, minor, and patch versions from
73     string(REGEX REPLACE "^([0-9]+)\\.[0-9]+" "\\1" DATE_VERSION_MAJOR "${DATE_VERSION}")
74     string(REGEX REPLACE "^[0-9]+\\.([0-9]+)" "\\1" DATE_VERSION_MINOR "${DATE_VERSION}")
75     message(STATUS "DATE version ${DATE_VERSION_MAJOR}.${DATE_VERSION_MINOR} found.")
76     
77     # setting the cflags
78     execute_process(COMMAND ${DATE_CONFIG} --cflags OUTPUT_VARIABLE DATE_CFLAGS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
79     if(error)
80         message(FATAL_ERROR "Error retrieving DATE cflags : ${error}")
81     endif(error)
82     
83     # If flags not empty we strip them
84     if(DATE_CFLAGS)
85         string(STRIP ${DATE_CFLAGS} DATE_CFLAGS)
86     endif()
87     
88     set(DATE_CFLAGS "-DALI_DATE ${DATE_CFLAGS}")
89
90     # setting the ldflags
91     execute_process(COMMAND ${DATE_CONFIG} --ldflags OUTPUT_VARIABLE DATE_LDFLAGS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
92     if(error)
93         message(FATAL_ERROR "Error retrieving DATE ldflags : ${error}")
94     endif(error)
95     
96     # If the flags are not empty we strip them
97     if(DATE_LDFLAGS)
98         string(STRIP ${DATE_LDFLAGS} DATE_LDFLAGS)
99     endif()
100
101     # setting the libs
102     execute_process(COMMAND ${DATE_CONFIG} --libs OUTPUT_VARIABLE DATE_LIBS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
103     if(error)
104         message(FATAL_ERROR "Error retrieving DATE libs : ${error}")
105     endif(error)
106     
107     # If the flags are not empty we strip them
108     if(DATE_LIBS)
109         string(STRIP ${DATE_LIBS} DATE_LIBS)
110     endif()
111     
112     # DATE_LIBRARIES
113     # Extracting the list of dynamic and static libraries from the --libs 
114     # The list is needed during the generation of the DAs
115     # using a find_library in order to get the full path and not need to use -L during linking of the DAs
116     string(REGEX MATCHALL "[-]l[^- ]+" DATE_LIBRARIES_TMP ${DATE_LIBS})
117     string(REGEX REPLACE "[-]l" ";" DATE_LIBRARIES_TMP ${DATE_LIBRARIES_TMP})
118     # Get the list of search path using -Lyyy -> yyy
119     string(REGEX MATCHALL "[-]L[^- ]+" DATE_LIBRARIES_PATH_TMP ${DATE_LIBS})
120     string(REGEX REPLACE "[-]L" ";" DATE_LIBRARIES_PATH_TMP ${DATE_LIBRARIES_PATH_TMP})
121     find_date_libraries(DATE_LIBRARIES "${DATE_LIBRARIES_TMP}" "${DATE_LIBRARIES_PATH_TMP}")
122     message(STATUS "DATE LIBs ${DATE_LIBRARIES}")
123     
124     # Fix for mysql bug https://bugs.launchpad.net/percona-server/+bug/1287374
125     set(DATE_LIBS "${DATE_LIBS} -L/usr/lib64/mysql/")
126     
127     # setting the monlibs
128     execute_process(COMMAND ${DATE_CONFIG} --monitorlibs=noshift OUTPUT_VARIABLE DATE_MONLIBS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
129     if(error)
130         message(FATAL_ERROR "Error retrieving DATE monitorlibs : ${error}")
131     endif(error)
132     
133     # If the flags are not empty we strip them
134     if(DATE_MONLIBS)
135         string(STRIP ${DATE_MONLIBS} DATE_MONLIBS)
136     endif()
137
138     # DATE_MONLIBRARIES
139     # Extracting the list of dynamic and static libraries from the --libs 
140     # The list is needed during the generation of the DAs
141     # Removing everything that starts with - to leave all the static libraries
142     # Replacing space with ; to create a list that will be sent to the linked 
143     string(REGEX REPLACE "-[^ \r\n\t].+( |$)?" "" DATE_STATICMON ${DATE_MONLIBS})
144     if(DATE_STATICMON)
145         string(REPLACE " " ";"  DATE_STATICMON ${DATE_STATICMON})
146     endif(DATE_STATICMON)
147     
148     # Extracting all the shared libraries 
149     # using a find_library in order to get the full path and not need to use -L during linking of the DAs
150     string(REGEX MATCHALL "[-]l[^- ]+" DATE_MONLIBRARIES_TMP ${DATE_MONLIBS})
151     string(REGEX REPLACE "[-]l" ";" DATE_MONLIBRARIES_TMP ${DATE_MONLIBRARIES_TMP})
152     # Get the list of search path using -Lyyy -> yyy
153     string(REGEX MATCHALL "[-]L[^- ]+" DATE_MONLIBRARIES_PATH_TMP ${DATE_MONLIBS})
154     string(REGEX REPLACE "[-]L" ";" DATE_MONLIBRARIES_PATH_TMP ${DATE_MONLIBRARIES_PATH_TMP})
155     find_date_libraries(DATE_MONLIBRARIES "${DATE_MONLIBRARIES_TMP}" "${DATE_MONLIBRARIES_PATH_TMP}")
156     set(DATE_MONLIBRARIES ${DATE_STATICMON} ${DATE_MONLIBRARIES})
157     message(STATUS "MONSTATIC ${DATE_STATICMON}")
158     
159     # Fix for mysql bug https://bugs.launchpad.net/percona-server/+bug/1287374
160     set(DATE_MONLIBS "${DATE_MONLIBS} -L/usr/lib64/mysql/")
161
162     # setting the rclibs
163     execute_process(COMMAND ${DATE_CONFIG} --rcproxylibs OUTPUT_VARIABLE DATE_RCPROXYLIBS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
164     if(error)
165         message(FATAL_ERROR "Error retrieving DATE rcproxylibs")
166     endif(error)
167
168     # If the flags are not empty we strip them
169     if(DATE_RCPROXYLIBS)
170         string(STRIP ${DATE_RCPROXYLIBS} DATE_RCPROXYLIBS)
171     endif()
172
173     # DATE_LIBRARIES
174     # Extracting the list of dynamic and static libraries from the --libs 
175     # The list is needed during the generation of the DAs
176     string(REGEX MATCHALL "[-]l[^- ]+" DATE_RCPROXYLIBRARIES_TMP ${DATE_RCPROXYLIBS})
177     string(REGEX REPLACE "[-]l" ";" DATE_RCPROXYLIBRARIES_TMP ${DATE_RCPROXYLIBRARIES_TMP})
178     # Get the list of search path using -Lyyy -> yyy
179     string(REGEX MATCHALL "[-]L[^- ]+" DATE_RCPROXYLIBRARIES_PATH_TMP ${DATE_RCPROXYLIBS})
180     string(REGEX REPLACE "[-]L" ";" DATE_RCPROXYLIBRARIES_PATH_TMP ${DATE_RCPROXYLIBRARIES_PATH_TMP})
181     find_date_libraries(DATE_RCPROXYLIBRARIES "${DATE_RCPROXYLIBRARIES_TMP}" "${DATE_RCPROXYLIBRARIES_PATH_TMP}")
182     message(STATUS "DATE RCLIBs ${DATE_RCPROXYLIBRARIES}")
183
184     # setting the monlibs
185     execute_process(COMMAND ${DATE_CONFIG} --monitorlibs=dyn OUTPUT_VARIABLE DATE_DYNMONLIBS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
186     if(error)
187         message(FATAL_ERROR "Error retrieving DATE monitorlibs : ${error}")
188     endif(error)
189     
190     # If the flags are not empty we strip them
191     if(DATE_DYNMONLIBS)
192         string(STRIP ${DATE_DYNMONLIBS} DATE_DYNMONLIBS)
193     endif()
194
195
196     set(DATE_FOUND TRUE)
197 else()
198     message(STATUS "DATE not found")
199 endif(DATE_CONFIG)
200