summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am5
-rw-r--r--configure.in2
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index f01256ca..1bfb8025 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -123,6 +123,7 @@ pkginclude_HEADERS = \
qif.h \
quotes.h \
reconcile.h \
+ register.h \
report.h \
session.h \
system.hh \
@@ -152,7 +153,7 @@ info_TEXINFOS = ledger.texi
######################################################################
-lisp_LISP = ledger.el timeclock.el
+dist_lisp_LISP = ledger.el timeclock.el
######################################################################
@@ -216,7 +217,7 @@ UnitTests_CPPFLAGS = -I$(srcdir)/tests $(libledger_la_CPPFLAGS)
UnitTests_LDFLAGS = $(LIBADD_DL)
UnitTests_LDADD = $(lib_LTLIBRARIES) gdtoa/libgdtoa.la -lcppunit
-PyUnitTests_SOURCES = PyUnitTest.py
+PyUnitTests_SOURCES = PyUnitTests.py
PyUnitTests: PyUnitTests.py
cat $(srcdir)/PyUnitTests.py | sed "s/%srcdir%/$(ESC_srcdir)/g" \
diff --git a/configure.in b/configure.in
index 87be65bd..c65ec096 100644
--- a/configure.in
+++ b/configure.in
@@ -322,7 +322,7 @@ AC_ARG_ENABLE(pch,
yes) pch=true ;;
no) pch=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-pch) ;;
- esac],[pch=true])
+ esac],[pch=false])
AM_CONDITIONAL(USE_PCH, test x$pch = xtrue)