Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrek committed Aug 25, 2024
1 parent b2eee56 commit 0bf3386
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# https://github.com/ocaml/setup-ocaml/issues/815#issuecomment-2204838759
# SHELLOPTS workaround for windows
# setting SHELLOPTS via GITHUB_ENV didn't work for some reason
- run: opam exec -- env SHELLOPTS=igncr sh ./configure --enable-debug
- run: opam exec -- env SHELLOPTS=igncr sh ./configure --enable-debug --disable-pthread

- run: opam exec -- make

Expand Down
2 changes: 1 addition & 1 deletion config/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1540,7 +1540,7 @@ pa_zog.cma: $(PA_ZOG_FILES)
$(OCAMLC) -I tools/zoggy -I +camlp4 -pp "$(CAMLP4OF) -loc loc" -a -o pa_zog.cma $(PA_ZOG_FILES)


OCAMLPP=./ocamlpp.byte
OCAMLPP=./ocamlpp

$(ZOGSOURCES): pa_zog.cma
$(MLTSOURCES): $(OCAMLPP)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/lib/stubs_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ value ml_setlcnumeric(value no)

#define NETDB_BUFFER_SIZE 10000

#if defined(_WIN32) || ( defined(__FreeBSD_version) && ( ((__FreeBSD_version >= 504102) && (__FreeBSD_version < 600000)) || (__FreeBSD_version >= 600029) ) )
#if defined(_WIN32) || defined(__CYGWIN__) || ( defined(__FreeBSD_version) && (__FreeBSD_version >= 600029) )
#define GETHOSTBYADDR_IS_REENTRANT 1
#define GETHOSTBYNAME_IS_REENTRANT 1
#endif /* _WIN32 */
Expand Down

0 comments on commit 0bf3386

Please sign in to comment.