Skip to content

Commit

Permalink
Commented out iberty_library stuff
Browse files Browse the repository at this point in the history
The iberty_library could not be found anywhere in my repos or on my system. Compiles and runs fine without.
  • Loading branch information
fairlight1337 committed Jul 19, 2012
1 parent 7cc4984 commit 56de93c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ cmake_minimum_required(VERSION 2.8)
# Grive version. remember to update it for every new release!
set( GRIVE_VERSION "0.2.0" )

# Actually find the boost libraries
find_package( Boost )

# common compile options
add_definitions( -DVERSION="${GRIVE_VERSION}" )
add_definitions( -D_FILE_OFFSET_BITS=64 )
Expand Down
9 changes: 5 additions & 4 deletions libgrive/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ if ( BFD_FOUND )

endif ( BFD_FOUND )

if ( IBERTY_FOUND )
set( OPT_LIBS ${OPT_LIBS} ${IBERTY_LIBRARY} )
endif ( IBERTY_FOUND )
# Not found on my system or in any standard repos.
#if ( IBERTY_FOUND )
# set( OPT_LIBS ${OPT_LIBS} ${IBERTY_LIBRARY} )
#endif ( IBERTY_FOUND )

if ( ZLIB_FOUND )
set( OPT_LIBS ${OPT_LIBS} ${ZLIB_LIBRARIES} )
Expand Down Expand Up @@ -81,7 +82,7 @@ target_link_libraries( grive
${LIBGCRYPT_LIBRARIES}
${GDBM_LIBRARIES}
${Boost_LIBRARIES}
${IBERTY_LIBRARY}
#${IBERTY_LIBRARY}
${EXPAT_LIBRARY}
${OPT_LIBS}
)
Expand Down

0 comments on commit 56de93c

Please sign in to comment.