diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-10-09 15:50:01 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-10-09 15:50:01 +0000 |
commit | b7d877dc45e03be1fe89c8edf674fc939d74f6ac (patch) | |
tree | edecbaf89fc253131e4512a14164daf494ff39c8 /app-text/wv2/files | |
parent | bump (diff) | |
download | historical-b7d877dc45e03be1fe89c8edf674fc939d74f6ac.tar.gz historical-b7d877dc45e03be1fe89c8edf674fc939d74f6ac.tar.bz2 historical-b7d877dc45e03be1fe89c8edf674fc939d74f6ac.zip |
Version bump. Remove old.
Package-Manager: portage-2.2_rc44/cvs/Linux i686
Diffstat (limited to 'app-text/wv2/files')
-rw-r--r-- | app-text/wv2/files/0.4.0-cmake.patch | 25 | ||||
-rw-r--r-- | app-text/wv2/files/wv2-0.4.0-elif.patch | 26 |
2 files changed, 0 insertions, 51 deletions
diff --git a/app-text/wv2/files/0.4.0-cmake.patch b/app-text/wv2/files/0.4.0-cmake.patch index 0f5828da765b..78af5bcf6054 100644 --- a/app-text/wv2/files/0.4.0-cmake.patch +++ b/app-text/wv2/files/0.4.0-cmake.patch @@ -27,28 +27,3 @@ diff -urN wv2-0.4.0.old/CMakeLists.txt wv2-0.4.0/CMakeLists.txt # # Set cflags and ldflags -diff -urN wv2-0.4.0.old/src/CMakeLists.txt wv2-0.4.0/src/CMakeLists.txt ---- wv2-0.4.0.old/src/CMakeLists.txt 2009-08-26 23:46:40.000000000 +0200 -+++ wv2-0.4.0/src/CMakeLists.txt 2009-09-29 11:20:05.000000000 +0200 -@@ -90,11 +90,11 @@ - INSTALL( TARGETS wv2 - EXPORT wvWare - RUNTIME DESTINATION bin -- LIBRARY DESTINATION lib -- ARCHIVE DESTINATION lib/static -+ LIBRARY DESTINATION lib${LIB_SUFFIX} -+ ARCHIVE DESTINATION lib${LIB_SUFFIX}/static - ) - --INSTALL( EXPORT wvWare DESTINATION lib/wvWare FILE wv2.cmake ) -+INSTALL( EXPORT wvWare DESTINATION lib${LIB_SUFFIX}/wvWare FILE wv2.cmake ) - - INSTALL( FILES ${wv2_HEADERS} - DESTINATION include/wv2 -@@ -103,5 +103,5 @@ - # libtool files are useless for Visual C++ and Borland C++ - IF( NOT MSVC AND NOT BORLAND ) - INCLUDE( ${wvWare_SOURCE_DIR}/cmake/MacroCreateLibtoolFile.cmake ) -- CREATE_LIBTOOL_FILE( wv2 /lib ) -+ CREATE_LIBTOOL_FILE( wv2 /lib${LIB_SUFFIX} ) - ENDIF( NOT MSVC AND NOT BORLAND ) diff --git a/app-text/wv2/files/wv2-0.4.0-elif.patch b/app-text/wv2/files/wv2-0.4.0-elif.patch deleted file mode 100644 index d4f352f6d739..000000000000 --- a/app-text/wv2/files/wv2-0.4.0-elif.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- src/ustring.cpp.old 2009-09-23 01:05:50.750887617 +0400 -+++ src/ustring.cpp 2009-09-23 01:08:17.317619492 +0400 -@@ -78,9 +78,9 @@ - { - #if defined(HAVE_FUNC_ISINF) - return (isinf(d) == 1); --#elif HAVE_FUNC_FINITE -+#elif defined(HAVE_FUNC_FINITE) - return finite(d) == 0 && d == d; // ### can we distinguish between + and - ? --#elif HAVE_FUNC__FINITE -+#elif defined(HAVE_FUNC__FINITE) - return _finite(d) == 0 && d == d; // ### - #else - return false; -@@ -91,9 +91,9 @@ - { - #if defined(HAVE_FUNC_ISINF) - return (isinf(d) == -1); --#elif HAVE_FUNC_FINITE -+#elif defined(HAVE_FUNC_FINITE) - return finite(d) == 0 && d == d; // ### --#elif HAVE_FUNC__FINITE -+#elif defined(HAVE_FUNC__FINITE) - return _finite(d) == 0 && d == d; // ### - #else - return false; |