completely fixed issue with win32 option;
This commit is contained in:
parent
3c1ed141a2
commit
425ca948c3
@ -50,7 +50,7 @@ case $host_os in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
||||||
AM_CONDITIONAL(COND_WIN32, test x$WIN32=xyes)
|
AM_CONDITIONAL(COND_WIN32, test "x$WIN32" = "xyes")
|
||||||
|
|
||||||
dnl AM_CONDITIONAL(BUILD_WIN32, test "x$enable_win32_build" = "xyes")
|
dnl AM_CONDITIONAL(BUILD_WIN32, test "x$enable_win32_build" = "xyes")
|
||||||
|
|
||||||
|
@ -20,14 +20,16 @@ libsxmp_la_LDFLAGS =
|
|||||||
|
|
||||||
libsxmp_la_LIBADD = -lpthread -lcrypto $(OPENSSL_LIBS)
|
libsxmp_la_LIBADD = -lpthread -lcrypto $(OPENSSL_LIBS)
|
||||||
|
|
||||||
if !COND_WIN32
|
if COND_WIN32
|
||||||
|
|
||||||
libsxmp_la_LDFLAGS += -no-undefined
|
libsxmp_la_LDFLAGS += -no-undefined
|
||||||
libsxmp_la_LIBADD += -lmman -luuid /mingw64/lib/libsexpr.a /mingw64/lib/libtdata.a
|
libsxmp_la_LIBADD += -lmman -luuid /mingw64/lib/libsexpr.a /mingw64/lib/libtdata.a
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
libsxmp_la_LIBADD += $(LIBTDATA_LIBS) $(LIBSEXPR_LIBS) $(LIBUUID_LIBS)
|
libsxmp_la_LIBADD += $(LIBTDATA_LIBS) $(LIBSEXPR_LIBS) $(LIBUUID_LIBS)
|
||||||
endif COND_WIN32
|
|
||||||
|
endif !COND_WIN32
|
||||||
|
|
||||||
pkgconfigdir = $(libdir)/pkgconfig
|
pkgconfigdir = $(libdir)/pkgconfig
|
||||||
pkgconfig_DATA = libsxmp.pc
|
pkgconfig_DATA = libsxmp.pc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user