summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL.md2
-rw-r--r--README.md2
-rwxr-xr-xacprep6
3 files changed, 6 insertions, 4 deletions
diff --git a/INSTALL.md b/INSTALL.md
index a366dbfd..1d5bedba 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -57,7 +57,7 @@ A: You're probably missing some dependency libraries. If you tried
libboost-date-time-dev libboost-filesystem-dev \
libboost-graph-dev libboost-iostreams-dev \
libboost-python-dev libboost-regex-dev libboost-test-dev \
- doxygen libedit-dev libmpc-dev
+ doxygen libedit-dev libmpc-dev tzdata
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 1b0c3ba9..de083f7e 100644
--- a/README.md
+++ b/README.md
@@ -120,7 +120,7 @@ following packages (current as of Ubuntu 18.04):
libboost-system-dev libboost-dev python-dev gettext git \
libboost-date-time-dev libboost-filesystem-dev \
libboost-iostreams-dev libboost-python-dev libboost-regex-dev \
- libboost-test-dev libedit-dev libgmp3-dev libmpfr-dev texinfo
+ libboost-test-dev libedit-dev libgmp3-dev libmpfr-dev texinfo tzdata
### Debian
diff --git a/acprep b/acprep
index c768bc52..c5b4c203 100755
--- a/acprep
+++ b/acprep
@@ -62,7 +62,8 @@ class BoostInfo(object):
if system in ['centos']:
return [ 'boost-devel' ]
- elif system in ['ubuntu-bionic', 'ubuntu-xenial', 'ubuntu-trusty']:
+ elif system in ['ubuntu-bionic', 'ubuntu-xenial',
+ 'ubuntu-trusty', 'ubuntu-cosmic']:
return [ 'libboost-dev',
'libboost-date-time-dev',
'libboost-filesystem-dev',
@@ -70,7 +71,8 @@ class BoostInfo(object):
'libboost-python-dev',
'libboost-regex-dev',
'libboost-system-dev',
- 'libboost-test-dev' ]
+ 'libboost-test-dev',
+ 'tzdata' ]
elif system in [ 'ubuntu-saucy', 'ubuntu-precise']:
return [ 'autopoint',