forked from pool/aegisub
Dave Plater
2f7dde443e
Fix boo#1130889 by fixing aegisub's build against boost 1.69 with aegisub-boost169.patch, reported upstream with patch in issue: https://github.com/Aegisub/Aegisub/issues/93 OBS-URL: https://build.opensuse.org/request/show/689868 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/aegisub?expand=0&rev=57
27 lines
1.6 KiB
Diff
27 lines
1.6 KiB
Diff
Index: Aegisub-524c6114a82157b143567240884de3a6d030b091/Makefile.inc.in
|
|
===================================================================
|
|
--- Aegisub-524c6114a82157b143567240884de3a6d030b091.orig/Makefile.inc.in 2018-07-10 00:06:51.000000000 +0200
|
|
+++ Aegisub-524c6114a82157b143567240884de3a6d030b091/Makefile.inc.in 2019-03-29 13:17:21.692386078 +0200
|
|
@@ -29,7 +29,7 @@ CXXFLAGS = @CXXFLAGS@
|
|
CPPFLAGS = @CPPFLAGS@
|
|
CFLAGS_DEP = -MMD -MP
|
|
LIBS = @LIBS@
|
|
-LDFLAGS = @LDFLAGS@
|
|
+LDFLAGS = @LDFLAGS@ -pthread
|
|
INSTALL_FLAGS = -m 644
|
|
LIB_SHARED_LINK = -shared -Wl,-soname -Wl,$(LIB_SHARED_FULL)
|
|
LIB_SHARED_LINK_OSX = -dynamiclib -Wl,-undefined -Wl,dynamic_lookup -compatibility_version $(LIB_VERSION) -current_version $(LIB_VERSION) -Wl,-single_module -mmacosx-version-min=10.8 -install_name ${CURDIR}/$(LIB_SHARED_FULL)
|
|
Index: Aegisub-524c6114a82157b143567240884de3a6d030b091/configure.ac
|
|
===================================================================
|
|
--- Aegisub-524c6114a82157b143567240884de3a6d030b091.orig/configure.ac 2018-07-10 00:06:51.000000000 +0200
|
|
+++ Aegisub-524c6114a82157b143567240884de3a6d030b091/configure.ac 2019-03-29 13:17:21.692386078 +0200
|
|
@@ -136,7 +136,7 @@ AS_IF([test x$enable_compiler_flags != x
|
|
CFLAGS="$CFLAGS -Wall -Wextra -Wno-unused-parameter -std=gnu99 -pipe -g"
|
|
CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wno-unused-parameter -fno-strict-aliasing -pipe -g"
|
|
AC_CXX_FLAG([-std=c++11])
|
|
- AC_CXX_FLAG([-Wno-c++11-narrowing])
|
|
+ AC_CXX_FLAG([-Wno-narrowing])
|
|
AC_C_FLAG([-Wno-unused-local-typedefs])
|
|
AC_CXX_FLAG([-Wno-unused-local-typedefs])
|
|
|