Skip to content

Commit ce5b989

Browse files
dlonMarkusPettersson98
authored andcommitted
Build libpcap without dbus
1 parent 368f5d3 commit ce5b989

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

test/scripts/Dockerfile

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
ARG IMAGE=ghcr.io/mullvad/mullvadvpn-app-build:latest
22
FROM $IMAGE
33

4+
ENV OPENSSL_STATIC=1 \
5+
OPENSSL_LIB_DIR=/usr/lib/x86_64-linux-gnu \
6+
OPENSSL_INCLUDE_DIR=/usr/include/openssl
7+
48
RUN rustup target add x86_64-pc-windows-gnu
59

610
RUN apt-get update && apt-get install -y \
7-
mtools pkg-config libssl-dev libpcap-dev
11+
mtools pkg-config libssl-dev
12+
13+
RUN git clone https://github.com/the-tcpdump-group/libpcap.git
14+
RUN apt-get install -y autoconf flex bison
15+
16+
RUN cd libpcap \
17+
&& ./autogen.sh \
18+
&& ./configure --enable-remote=yes --enable-dbus=no --enable-shared=no \
19+
&& make \
20+
&& make install
21+
22+
RUN rm -rf libpcap
23+
RUN apt-get remove -y autoconf flex bison

test/test-manager/build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
fn main() {
22
// Rebuild if SSH provision script changes
33
println!("cargo::rerun-if-changed=../scripts/ssh-setup.sh");
4+
5+
println!("cargo::rustc-link-search=native=/usr/lib/x86_64-linux-gnu");
6+
println!("cargo::rustc-link-lib=static=pcap");
47
}

0 commit comments

Comments
 (0)