Open
Conversation
Attempting to use the library headers from their make install location results in <pokereval_export.h> being unfound. If make-installed, the location implied by the chevrons would be <poker-eval/pokereval_export.h>, though I think the standard method is just a relative path.
This should refer to the parent directory's poker_defs.h. Otherwise, after install, inclusions of <poker-eval/eval.h> will fail.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Attempting to use the library headers from their make install location results
in <pokereval_export.h> being unfound. If make-installed, the location implied
by the chevrons would be <poker-eval/pokereval_export.h>, though I think the
standard method is just a relative path.
This is also a problem in the libpoker-eval-dev package, but I'm not sure if this is the same project.
Steps to reproduce:
Check out poker-eval.
Build and make install according to readme:
autoreconf --install
./configure
make
./configure
make install
Create a compile-able c program and
#include <poker-eval/poker_defs.h>Attempt to compile.
Perhaps this is the wrong header to include? I am using it because I saw it in the examples.