Skip to content

Commit

Permalink
[makefile] Use va_copy everywhere instead of __va_copy (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
manugarg authored Jan 13, 2024
1 parent ba807d6 commit c76954c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ LIBRARY = $(LIBRARY_NAME).$(SO_SUFFIX).$(LIB_VER)
MKSHLIB = $(CC) -shared
LIB_OPTS = -Wl,-soname=$(LIBRARY) -Wl,-exclude-libs=libjs.a
SHFLAGS = -fPIC
SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=__va_copy
SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=va_copy

ifeq ($(OS_ARCH),FreeBSD)
PREFIX ?= /usr/local
Expand Down

0 comments on commit c76954c

Please sign in to comment.