Skip to content

Commit

Permalink
Update gmap to 2024-10-10 (#51341)
Browse files Browse the repository at this point in the history
* Update gmap to 2024-10-10

* revert to skipping osx
  • Loading branch information
mencian authored Oct 11, 2024
1 parent b3c5cd5 commit 4f7fa12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions recipes/gmap/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ export CPPFLAGS="${CPPFLAGS} -I${PREFIX}/include"

export LC_ALL=en_US.UTF-8

if [ "$(uname)" == "Darwin" ]; then
if [[ "$(uname)" == "Darwin" ]]; then
# for Mac OSX
export LDFLAGS="${LDFLAGS} -headerpad_max_install_names"
export CFLAGS="${CFLAGS} -m64 -Wno-implicit-function-declaration -Wdeprecated-non-prototype"
export CFLAGS="${CFLAGS} -m64 -Wno-implicit-function-declaration -Wno-deprecated-non-prototype"
export LC_ALL=C
fi

Expand All @@ -37,7 +37,7 @@ autoreconf -if
LDFLAGS="${LDFLAGS}" \
--prefix="${PREFIX}" \
--with-gmapdb="${PREFIX}/share" \
--with-simd-level=${SIMD_LEVEL}
--with-simd-level="${SIMD_LEVEL}"

make -j"${CPU_COUNT}"
make install
Expand Down
4 changes: 2 additions & 2 deletions recipes/gmap/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "GMAP" %}
{% set version = "2024.09.18" %}
{% set sha256 = "00d28c1a8c95295c8edd006cc0d1b5154cabe185de1f5a5dd8ccdb01fab38a18" %}
{% set version = "2024.10.10" %}
{% set sha256 = "634952166008886f6f61bccbd32fd1a258a687aa2d5c65f0bbf58a41d34cb6f6" %}

package:
name: {{ name|lower }}
Expand Down

0 comments on commit 4f7fa12

Please sign in to comment.