diff options
Diffstat (limited to 'net-p2p/libtorrent-rasterbar-14/files/patch-configure.in')
-rw-r--r-- | net-p2p/libtorrent-rasterbar-14/files/patch-configure.in | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/net-p2p/libtorrent-rasterbar-14/files/patch-configure.in b/net-p2p/libtorrent-rasterbar-14/files/patch-configure.in deleted file mode 100644 index 8c9d4d668051..000000000000 --- a/net-p2p/libtorrent-rasterbar-14/files/patch-configure.in +++ /dev/null @@ -1,66 +0,0 @@ ---- configure.in.orig 2009-08-05 11:29:42.000000000 +0900 -+++ configure.in 2009-08-29 03:28:28.000000000 +0900 -@@ -65,19 +65,6 @@ - AM_CONDITIONAL([ENABLE_SHIPPED_ASIO], false) - - dnl Check for boost libraries. --AX_BOOST_BASE([1.35],[ -- AX_BOOST_SYSTEM -- dnl check that Boost.System was found: -- if test -z "$BOOST_SYSTEM_LIB"; then -- AC_MSG_ERROR([unable to find Boost.System library, currently this is required.]) -- fi -- -- AX_BOOST_ASIO -- dnl check that Boost.Asio was found: -- if test -z "$BOOST_ASIO_LIB"; then -- AC_MSG_ERROR([Unable to find Boost.Asio library, currently this is required.]) -- fi --],[ - AX_BOOST_BASE([1.34],[ - - dnl the user can choose which Asio library to use -@@ -121,7 +108,6 @@ - esac - AM_CONDITIONAL([ENABLE_SHIPPED_ASIO], [test x$enable_shipped_asio = "xyes"]) - ]) --]) - - AC_MSG_NOTICE([BOOST_CPPFLAGS=$BOOST_CPPFLAGS]) - AC_MSG_NOTICE([BOOST_LDFLAGS=$BOOST_LDFLAGS]) -@@ -351,7 +337,7 @@ - esac - - dnl Use possibly specific python install params --if [[ "x$PYTHON_INSTALL_PARAMS" == "x" ]]; then -+if [[ "x$PYTHON_INSTALL_PARAMS" = "x" ]]; then - PYTHON_INSTALL_PARAMS='--prefix=$(DESTDIR)$(prefix)' - fi - AC_SUBST(PYTHON_INSTALL_PARAMS) -@@ -413,7 +399,7 @@ - esac - - dnl Set some defines if we are building a shared library --if [[ "x$enable_shared" == "xyes" ]]; then -+if [[ "x$enable_shared" = "xyes" ]]; then - AC_DEFINE(TORRENT_BUILDING_SHARED,,[Make sure the functions and classes are exported.]) - COMPILETIME_OPTIONS+="-DTORRENT_LINKING_SHARED " - fi -@@ -425,7 +411,7 @@ - [case "$enableval" in - no) - AC_DEFINE(NDEBUG,,[Define to disable debugging]) -- DEBUGFLAGS="-Os" -+ DEBUGFLAGS="" - # COMPILETIME_OPTIONS+="-DNDEBUG " - ;; - yes) -@@ -438,7 +424,7 @@ - AC_MSG_ERROR([Unknown --enable-debug option "$enableval". Use either "yes" or "no".]) - ;; - esac], -- [DEBUGFLAGS="-Os" -+ [DEBUGFLAGS="" - AC_DEFINE(NDEBUG,,[Define to disable debugging]) - # COMPILETIME_OPTIONS+="-DNDEBUG " - ] |