-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: Updates to eliminates warnings, add test for boost system lib.
- Loading branch information
Gary Lowell
committed
Oct 15, 2012
1 parent
aed3612
commit 3658157
Showing
4 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ AC_PREREQ(2.59) | |
# VERSION define is not used by the code. It gets a version string | ||
# from 'git describe'; see src/ceph_ver.[ch] | ||
AC_INIT([ceph], [0.52], [[email protected]]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
|
||
AC_CONFIG_SUBDIRS([src/gtest]) | ||
AC_CONFIG_SUBDIRS([src/leveldb]) | ||
|
@@ -360,6 +361,9 @@ AC_CHECK_HEADER([boost/random/discrete_distribution.hpp], | |
AC_CHECK_HEADER([boost/statechart/state.hpp], [], | ||
AC_MSG_FAILURE(["Can't find boost statechart headers; need 1.34 or later"])) | ||
|
||
AC_CHECK_LIB(boost_system-mt, main, [], | ||
AC_MSG_ERROR(["Boost system library not found."])) | ||
|
||
AC_LANG([C]) | ||
|
||
AC_CHECK_MEMBER([struct fiemap_extent.fe_logical], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Automake file | ||
|
||
ACLOCAL_AMFLAGS = -I m4 | ||
AM_LDFLAGS = -lpthread | ||
|
||
# Nonstandard package files for distribution | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters