repo.or.cz
/
barvinok.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
topcom.c: add missing include
[barvinok.git]
/
version.c
blob
7a935f4d9a2bc1dc420d3026c823d6310ce72059
1
#include <barvinok/util.h>
2
#include
"config.h"
3
#include
"version.h"
4
5
const char
*
barvinok_version
(
void
)
6
{
7
return
8
GIT_HEAD_ID
"
\n
"
9
#ifdef HAVE_PET
10
" +PET"
11
#else
12
" -PET"
13
#endif
14
#ifdef HAVE_LIBCDDGMP
15
" +CDDLIB"
16
#else
17
" -CDDLIB"
18
#endif
19
#ifdef HAVE_LIBGLPK
20
" +GLPK"
21
#else
22
" -GLPK"
23
#endif
24
#ifdef POINTS2TRIANGS_PATH
25
" +TOPCOM"
26
#else
27
" -TOPCOM"
28
#endif
29
#ifdef USE_ZSOLVE
30
" +ZSOLVE"
31
#else
32
" -ZSOLVE"
33
#endif
34
"
\n
"
35
;
36
}