Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions smc/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ PKG_PROG_PKG_CONFIG

### Check for libraries ###

# Check for the Boost System library
AC_CHECK_LIB([boost_system], [main], ,
[AC_MSG_ERROR([Unable to find Boost System library])])

# Check for the Boost Filesystem library
AC_CHECK_LIB([boost_filesystem], [main], ,
[AC_MSG_ERROR([Unable to find Boost Filesystem library])])
Expand All @@ -26,10 +30,6 @@ AC_CHECK_LIB([boost_filesystem], [main], ,
AC_CHECK_LIB([boost_thread], [main], ,
[AC_MSG_ERROR([Unable to find Boost Thread library])])

# Check for the Boost System library
AC_CHECK_LIB([boost_system], [main], ,
[AC_MSG_ERROR([Unable to find Boost System library])])

# Check for the OpenGL and GLU library
case "${host}" in
*darwin*|*macosx*)
Expand Down