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 \ lua \
libmaxminddb \ libmaxminddb \
libxml2 \ libxml2 \
geoip \
ssdeep \ ssdeep \
pcre \ pcre \
bison \ bison \
@ -111,6 +110,13 @@ jobs:
with: with:
submodules: true submodules: true
fetch-depth: 0 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 - name: build.sh
run: ./build.sh run: ./build.sh
- name: configure - name: configure