mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
4c95fb4640
Add Modules subdirs to SRCDIRS to generate directories for out-of-tree object files. Debian wants ncurses lib. Works on Fedora, too. Debian also needs pkg-config to detect correct flags. Remove more outdated comments. Makefile now tracks header dependencies -lintl is injected by configure when needed. Build _dbm with gdbm-compat. Group some modules by purpose. socket, select, and mmap work on Windows, too.
25 lines
379 B
Bash
Executable File
25 lines
379 B
Bash
Executable File
#!/bin/sh
|
|
apt-get update
|
|
|
|
apt-get -yq install \
|
|
build-essential \
|
|
pkg-config \
|
|
ccache \
|
|
gdb \
|
|
lcov \
|
|
libbz2-dev \
|
|
libffi-dev \
|
|
libgdbm-dev \
|
|
libgdbm-compat-dev \
|
|
liblzma-dev \
|
|
libncurses5-dev \
|
|
libreadline6-dev \
|
|
libsqlite3-dev \
|
|
libssl-dev \
|
|
lzma \
|
|
lzma-dev \
|
|
tk-dev \
|
|
uuid-dev \
|
|
xvfb \
|
|
zlib1g-dev
|