summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-03-27 14:27:05 -0700
committerJan Kotas <jkotas@microsoft.com>2015-03-27 14:27:05 -0700
commit898cdcf05ae334252b354a1f5bae9e26be1912ec (patch)
treeccfd066c168d1e7f9ff254c01f2b96fe16aec390 /src
parentd5354b7c810065f1bfa23dbdb192adeaac870744 (diff)
parent52cd3e3c96fdc1332d578a48f76d1572509678f7 (diff)
downloadcoreclr-898cdcf05ae334252b354a1f5bae9e26be1912ec.tar.gz
coreclr-898cdcf05ae334252b354a1f5bae9e26be1912ec.tar.bz2
coreclr-898cdcf05ae334252b354a1f5bae9e26be1912ec.zip
Merge pull request #589 from josteink/bsd_configure
Correctly set HAVE_BSD_REGS_T flag during configure.
Diffstat (limited to 'src')
-rw-r--r--src/pal/src/configure.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pal/src/configure.cmake b/src/pal/src/configure.cmake
index 329d8a8871..50d84b11fa 100644
--- a/src/pal/src/configure.cmake
+++ b/src/pal/src/configure.cmake
@@ -67,7 +67,7 @@ check_struct_has_member ("struct tm" tm_gmtoff time.h HAVE_TM_GMTOFF)
check_struct_has_member ("ucontext_t" uc_mcontext.gregs[0] ucontext.h HAVE_GREGSET_T)
set(CMAKE_EXTRA_INCLUDE_FILES machine/reg.h)
-check_type_size("struct regs" BSD_REGS_T)
+check_type_size("struct reg" BSD_REGS_T)
set(CMAKE_EXTRA_INCLUDE_FILES)
set(CMAKE_EXTRA_INCLUDE_FILES asm/ptrace.h)
check_type_size("struct pt_regs" PT_REGS)