Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. diff -aur .cache/pacaur/dotnet-cli/src/coreclr-1.1.0/src/pal/src/configure.cmake ./dotnet-cli-patch/src/coreclr-1.1.0/src/pal/src/configure.cmake
  2. --- a/src/pal/src/configure.cmake 2016-11-01 15:05:29.000000000 -0500
  3. +++ b/src/pal/src/configure.cmake 2016-12-02 13:11:35.949588973 -0600
  4. @@ -33,7 +33,11 @@
  5. check_include_files(lwp.h HAVE_LWP_H)
  6. check_include_files(libunwind.h HAVE_LIBUNWIND_H)
  7. check_include_files(runetype.h HAVE_RUNETYPE_H)
  8. -check_include_files(lttng/tracepoint.h HAVE_LTTNG_TRACEPOINT_H)
  9. +#check_include_files(lttng/tracepoint.h HAVE_LTTNG_TRACEPOINT_H)
  10. +find_package(LTTngUST)
  11. +if(LTTNGUST_FOUND)
  12. + set(HAVE_LTTNG_TRACEPOINT_H 1)
  13. +endif()
  14. check_include_files(uuid/uuid.h HAVE_LIBUUID_H)
  15. check_include_files(sys/sysctl.h HAVE_SYS_SYSCTL_H)
  16. check_include_files(gnu/lib-names.h HAVE_GNU_LIBNAMES_H)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement