summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-10-22 18:38:42 +0000
committerMorgan Deters <mdeters@gmail.com>2012-10-22 18:38:42 +0000
commit772d8b69493c0fd0f443bcbff0a92da8c7565a0f (patch)
tree71a310db489c95d04b4d34569be112d7cf0db45e
parentfb5ff6dd1335ce5c4dc7d4607d1a44f03d80199c (diff)
fix installation of certain header files
-rw-r--r--src/Makefile.am9
-rw-r--r--src/util/tls.h.in2
2 files changed, 9 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 190a1b1bf..204ea63f8 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -107,6 +107,9 @@ install-data-local:
(echo include/cvc4.h; \
echo include/cvc4_public.h; \
echo include/cvc4parser_public.h; \
+ echo util/tls.h; \
+ echo util/integer.h; \
+ echo util/rational.h; \
find * -name '*.h' | \
xargs grep -l '^# *include *"cvc4.*_public\.h"'; \
(cd "$(srcdir)" && find * -name '*.h' | \
@@ -134,6 +137,9 @@ uninstall-local:
-(echo include/cvc4.h; \
echo include/cvc4_public.h; \
echo include/cvc4parser_public.h; \
+ echo util/tls.h; \
+ echo util/integer.h; \
+ echo util/rational.h; \
find * -name '*.h' | \
xargs grep -l '^# *include *"cvc4.*_public\.h"'; \
(cd "$(srcdir)" && find * -name '*.h' | \
@@ -155,6 +161,9 @@ mostlyclean-local:
(echo include/cvc4.h; \
echo include/cvc4_public.h; \
echo include/cvc4parser_public.h; \
+ echo util/tls.h; \
+ echo util/integer.h; \
+ echo util/rational.h; \
find * -name '*.h.fix' | \
xargs grep -l '^# *include *<cvc4/cvc4.*_public\.h>' | \
sed 's,\.fix$$,,'; \
diff --git a/src/util/tls.h.in b/src/util/tls.h.in
index cd89be9d0..17f1f1d6e 100644
--- a/src/util/tls.h.in
+++ b/src/util/tls.h.in
@@ -24,8 +24,6 @@
#ifndef __CVC4__TLS_H
#define __CVC4__TLS_H
-#line 28 "@srcdir@/tls.h.in"
-
// A bit obnoxious: we have to take varargs to support multi-argument
// template types in the threadlocals.
// E.g. "CVC4_THREADLOCAL(hash_set<type, hasher>*)" fails otherwise,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback