From 100027a36ae15400c30d7500bde79288a6e02eb0 Mon Sep 17 00:00:00 2001 From: "Timothy B. Terriberry" <tterribe@xiph.org> Date: Tue, 27 Nov 2012 21:38:57 -0800 Subject: [PATCH] s/OS_WIN32/OP_WIN32/ The former is too generic. --- Makefile.am | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 0ee3030..a82d770 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,7 @@ libopusfile_la_SOURCES = \ libopusfile_la_LIBADD = $(DEPS_LIBS) libopusfile_la_LDFLAGS = -no-undefined \ -version-info @OP_LT_CURRENT@:@OP_LT_REVISION@:@OP_LT_AGE@ -if OS_WIN32 +if OP_WIN32 libopusfile_la_SOURCES += src/wsockwrapper.c libopusfile_la_LIBADD += -lws2_32 endif diff --git a/configure.ac b/configure.ac index fe74c3c..c898c30 100644 --- a/configure.ac +++ b/configure.ac @@ -95,7 +95,7 @@ case $host in host_mingw=true ;; esac -AM_CONDITIONAL(OS_WIN32, test "x$host_mingw" = xtrue) +AM_CONDITIONAL(OP_WIN32, test "x$host_mingw" = xtrue) dnl Check for doxygen AC_ARG_ENABLE([doc], -- GitLab