Fix OSX build without GeoIP brew package

This commit is contained in:
Ervin Hegedus 2025-01-04 13:48:39 +01:00
parent d9101a4fe1
commit 900e7bcd06
No known key found for this signature in database
GPG Key ID: 5FA5BC3F5EC41F61

View File

@ -102,7 +102,6 @@ jobs:
lua \
libmaxminddb \
libxml2 \
geoip \
ssdeep \
pcre \
bison \
@ -111,6 +110,13 @@ jobs:
with:
submodules: true
fetch-depth: 0
- name: Build GeoIP
run: |
git clone https://github.com/maxmind/geoip-api-c.git
cd geoip-api-c
autoreconf --install
./configure --disable-dependency-tracking --disable-silent-rules --prefix=/opt/homebrew
make install
- name: build.sh
run: ./build.sh
- name: configure