Skip to content

Commit

Permalink
Merge pull request #4911 from pguyot/w18/fix-macos-sctk-strdup
Browse files Browse the repository at this point in the history
Workaround for macOS bug with strdup (fixes #4855)
  • Loading branch information
danpovey committed Apr 30, 2024
2 parents 02558cc + a74256f commit e57be0d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@ sph2pipe_v$(SPH2PIPE_VERSION)/Makefile: sph2pipe-$(SPH2PIPE_VERSION).tar.gz
rm -rf sph2pipe_v*
tar -xmzf sph2pipe-$(SPH2PIPE_VERSION).tar.gz
mv sph2pipe-$(SPH2PIPE_VERSION) sph2pipe_v$(SPH2PIPE_VERSION)
# Workaround for macOS bug <rdar://problem/19363342>
if [ `uname` = "Darwin" ]; then \
sed -i -e "s/#define _XOPEN_SOURCE 500/#define _XOPEN_SOURCE 600/g" sph2pipe_v$(SPH2PIPE_VERSION)/sph2pipe.c ; \
sed -i -e "s/#define _XOPEN_SOURCE 500/#define _XOPEN_SOURCE 600/g" sph2pipe_v$(SPH2PIPE_VERSION)/file_headers.c ; \
fi

sph2pipe-$(SPH2PIPE_VERSION).tar.gz:
if [ -d "$(DOWNLOAD_DIR)" ]; then \
Expand Down

0 comments on commit e57be0d

Please sign in to comment.