b006a31d52
Nix now requires SQLite and bzip2 to be pre-installed. SQLite is detected using pkg-config. We required DBD::SQLite anyway, so depending on SQLite is not a big problem. The --with-bzip2, --with-openssl and --with-sqlite flags are gone.
13 lines
207 B
Makefile
13 lines
207 B
Makefile
EXTRA_DIST = compat-include
|
|
|
|
libexec_PROGRAMS = bsdiff bspatch
|
|
|
|
bsdiff_SOURCES = bsdiff.c
|
|
|
|
bsdiff_LDADD = -lbz2
|
|
|
|
bspatch_SOURCES = bspatch.c
|
|
|
|
bspatch_LDADD = -lbz2
|
|
|
|
AM_CFLAGS = -O3 ${bsddiff_compat_include}
|