summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmed Ammar <b33fc0d3@gentoo.org>2009-01-07 15:12:29 +0000
committerAhmed Ammar <b33fc0d3@gentoo.org>2009-01-07 15:12:29 +0000
commit5994bf60b797a7788bc33979f9b5a6b3aaa25591 (patch)
tree68ab9d0da10ad813e4256d913f7e6d7a851a521e /dev-cpp/libmcpp/files
parentVersion bump from obsolete version of the code to an actual release (bug (diff)
downloadgentoo-2-5994bf60b797a7788bc33979f9b5a6b3aaa25591.tar.gz
gentoo-2-5994bf60b797a7788bc33979f9b5a6b3aaa25591.tar.bz2
gentoo-2-5994bf60b797a7788bc33979f9b5a6b3aaa25591.zip
Ebuild bump. Needed for new ebuild net-libs/ice.
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-rc9 i686)
Diffstat (limited to 'dev-cpp/libmcpp/files')
-rw-r--r--dev-cpp/libmcpp/files/libmcpp-2.7-stpcpy-gcc4.3.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/dev-cpp/libmcpp/files/libmcpp-2.7-stpcpy-gcc4.3.patch b/dev-cpp/libmcpp/files/libmcpp-2.7-stpcpy-gcc4.3.patch
new file mode 100644
index 000000000000..34ff1bb56c2d
--- /dev/null
+++ b/dev-cpp/libmcpp/files/libmcpp-2.7-stpcpy-gcc4.3.patch
@@ -0,0 +1,12 @@
+diff -Nru mcpp-2.7/src/internal.H mcpp-2.7-1.1/src/internal.H
+--- mcpp-2.7/src/internal.H 2008-03-11 17:04:07.000000000 +0100
++++ mcpp-2.7-1.1/src/internal.H 2008-04-04 10:58:37.000000000 +0200
+@@ -526,7 +526,7 @@
+ /* Do the final commands */
+ extern void print_heap( void);
+ /* Print blocks of heap memory */
+-#if ! HOST_HAVE_STPCPY || HOST_COMPILER == GNUC
++#if ! HOST_HAVE_STPCPY
+ extern char * stpcpy( char * dest, const char * src);
+ /* Non-Standard library function*/
+ #endif