diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-01 00:37:14 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-01 00:37:14 +0000 |
commit | 1000b73397bd72b71ede338caf5b6379072d94a4 (patch) | |
tree | 5dda0d342d7e1d3011f7ad7c76c07e4a93a1681c /Makefile.config.in | |
parent | 481169e7011b39708154713fe595e8d059c1586f (diff) |
For PR1019:
Add HAVE_PTHREAD to makefiles with support from configure and use it to
determine whether to build examples/ParallelJIT.
Patch by Anton Korobeynikov.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32054 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 2652db3bb9f..f7642c21178 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -165,7 +165,8 @@ RUNTEST := @RUNTEST@ TCLSH := @TCLSH@ ZIP := @ZIP@ -HAVE_PERL := @HAVE_PERL@ +HAVE_PERL := @HAVE_PERL@ +HAVE_PTHREAD := @HAVE_PTHREAD@ LIBS := @LIBS@ |