summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2011-01-10 22:21:27 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2011-01-10 22:21:27 +0000
commit381754d29633d67ce2538bf93a751fb2361ca1ac (patch)
treeb91c3dc77cc91bf69d0ba973f9e767b4b711918a /media-libs/allegro/files
parentold (diff)
downloadgentoo-2-381754d29633d67ce2538bf93a751fb2361ca1ac.tar.gz
gentoo-2-381754d29633d67ce2538bf93a751fb2361ca1ac.tar.bz2
gentoo-2-381754d29633d67ce2538bf93a751fb2361ca1ac.zip
old
(Portage version: 2.1.9.25/cvs/Linux i686)
Diffstat (limited to 'media-libs/allegro/files')
-rw-r--r--media-libs/allegro/files/allegro-4.2.2-autoconf.patch48
-rw-r--r--media-libs/allegro/files/allegro-4.2.2-deplib.patch11
-rw-r--r--media-libs/allegro/files/allegro-4.2.2-exec-stack.patch234
-rw-r--r--media-libs/allegro/files/allegro-4.2.2-flags.patch61
4 files changed, 0 insertions, 354 deletions
diff --git a/media-libs/allegro/files/allegro-4.2.2-autoconf.patch b/media-libs/allegro/files/allegro-4.2.2-autoconf.patch
deleted file mode 100644
index b6f60f3f01e9..000000000000
--- a/media-libs/allegro/files/allegro-4.2.2-autoconf.patch
+++ /dev/null
@@ -1,48 +0,0 @@
---- aclocal.m4
-+++ aclocal.m4
-@@ -193,7 +193,6 @@
- dnl Variables:
- dnl allegro_sv_procfs=(yes|no)
- dnl
--AC_MSG_CHECKING(for System V sys/procfs)
- AC_DEFUN(ALLEGRO_ACTEST_SV_PROCFS, [
- AC_CHECK_HEADER(sys/procfs.h, [
- AC_TRY_COMPILE(
-@@ -209,7 +208,6 @@
- [allegro_sv_procfs=no]
- ])
- ])
--AC_MSG_RESULT($allegro_sv_procfs)
-
- dnl
- dnl Test if sys/procfs.h tells us argc/argv.
-@@ -217,7 +215,6 @@
- dnl Variables:
- dnl allegro_procfs_argcv=(yes|no)
- dnl
--AC_MSG_CHECKING(if sys/procfs.h tells us argc/argv)
- AC_DEFUN(ALLEGRO_ACTEST_PROCFS_ARGCV, [
- AC_TRY_COMPILE(
- [#include <sys/procfs.h>],
-@@ -226,7 +223,6 @@
- [allegro_procfs_argcv=no]
- )
- ])
--AC_MSG_RESULT($allegro_procfs_argcv)
-
- dnl
- dnl Test for getexecname() on Solaris
-@@ -234,13 +230,11 @@
- dnl Variables:
- dnl allegro_sys_getexecname=(yes|no)
- dnl
--AC_MSG_CHECKING(for getexecname)
- AC_DEFUN(ALLEGRO_ACTEST_SYS_GETEXECNAME,
- [AC_CHECK_LIB(c, getexecname,
- [allegro_sys_getexecname=yes],
- [allegro_sys_getexecname=no])]
- )
--AC_MSG_RESULT($allegro_sys_getexecname)
-
- dnl
- dnl Test for X-Windows support.
diff --git a/media-libs/allegro/files/allegro-4.2.2-deplib.patch b/media-libs/allegro/files/allegro-4.2.2-deplib.patch
deleted file mode 100644
index 032cc19b7a5a..000000000000
--- a/media-libs/allegro/files/allegro-4.2.2-deplib.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- misc/deplib.sh.old 2009-04-15 09:30:10.000000000 +0200
-+++ misc/deplib.sh 2009-04-15 09:31:13.000000000 +0200
-@@ -152,7 +152,7 @@
- includes1=`grep '^[ ]*#[ ]*include[ ]*[a-zA-Z0-9_][a-zA-Z0-9_]*' $dep | \
- sed 's,^[ ]*#[ ]*include[ ]*\([a-zA-Z0-9_]*\),\1,'`
- includes2=`grep '^[ ]*#[ ]*include[ ]*".*"' $dep | \
-- sed 's,^[ ]*#[ ]*include[ ]*"\(.*\)",\1,'`
-+ sed 's,^[ ]*#[ ]*include[ ]*"\(.*\)".*,\1,'`
- if test -n "$includes1"; then
- for include in $includes1; do
- includes="$includes \$($include)"
diff --git a/media-libs/allegro/files/allegro-4.2.2-exec-stack.patch b/media-libs/allegro/files/allegro-4.2.2-exec-stack.patch
deleted file mode 100644
index 22a85919d45b..000000000000
--- a/media-libs/allegro/files/allegro-4.2.2-exec-stack.patch
+++ /dev/null
@@ -1,234 +0,0 @@
---- src/amd64/acpus.s
-+++ src/amd64/acpus.s
-@@ -128,3 +128,6 @@
- popq %rbp
- ret
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/iblit16.s
-+++ src/i386/iblit16.s
-@@ -743,3 +743,6 @@
-
-
- #endif /* ifdef ALLEGRO_COLOR16 */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/iblit24.s
-+++ src/i386/iblit24.s
-@@ -372,3 +372,6 @@
-
-
- #endif /* ifdef ALLEGRO_COLOR24 */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/iblit32.s
-+++ src/i386/iblit32.s
-@@ -357,3 +357,6 @@
-
-
- #endif /* ifdef ALLEGRO_COLOR32 */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/iblit8.s
-+++ src/i386/iblit8.s
-@@ -787,3 +787,6 @@
-
-
- #endif /* ifdef ALLEGRO_COLOR8 */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/icpus.s
-+++ src/i386/icpus.s
-@@ -213,3 +213,6 @@
- popl %ebp
- ret
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/igfx15.s
-+++ src/i386/igfx15.s
-@@ -436,3 +436,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR16 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/igfx16.s
-+++ src/i386/igfx16.s
-@@ -487,3 +487,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR16 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/igfx24.s
-+++ src/i386/igfx24.s
-@@ -581,3 +581,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR24 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/igfx32.s
-+++ src/i386/igfx32.s
-@@ -467,3 +467,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR32 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/igfx8.s
-+++ src/i386/igfx8.s
-@@ -530,3 +530,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR8 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/imisc.s
-+++ src/i386/imisc.s
-@@ -600,3 +600,6 @@
- popl %ebp
- ret /* end of fixhypot() */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/iscanmmx.s
-+++ src/i386/iscanmmx.s
-@@ -1672,3 +1672,6 @@
-
-
- #endif /* MMX */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/iscan.s
-+++ src/i386/iscan.s
-@@ -2777,3 +2777,6 @@
- ret /* end of _poly_scanline_ptex_mask_trans24() */
-
- #endif /* COLOR24 */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/ispr15.s
-+++ src/i386/ispr15.s
-@@ -494,3 +494,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR16 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/ispr16.s
-+++ src/i386/ispr16.s
-@@ -889,3 +889,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR16 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/ispr24.s
-+++ src/i386/ispr24.s
-@@ -913,3 +913,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR24 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/ispr32.s
-+++ src/i386/ispr32.s
-@@ -700,3 +700,6 @@
-
- #endif /* ifdef ALLEGRO_COLOR32 */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/ispr8.s
-+++ src/i386/ispr8.s
-@@ -1046,3 +1046,6 @@
-
-
- #endif /* ifdef ALLEGRO_COLOR8 */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/i386/izbuf.s
-+++ src/i386/izbuf.s
-@@ -2328,3 +2328,6 @@
- ret /* end of _poly_zbuf_ptex_mask_trans24() */
-
- #endif /* COLOR24 */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/linux/svgalibs.s
-+++ src/linux/svgalibs.s
-@@ -65,3 +65,6 @@
-
- #endif
- #endif
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/misc/icolconv.s
-+++ src/misc/icolconv.s
-@@ -3288,3 +3288,6 @@
-
- #endif /* ALLEGRO_NO_COLORCOPY */
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/misc/modexgfx.s
-+++ src/misc/modexgfx.s
-@@ -1688,3 +1688,6 @@
-
-
- #endif /* (!defined ALLEGRO_LINUX) || ((defined ALLEGRO_LINUX_VGA) && ... */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/misc/vbeafs.s
-+++ src/misc/vbeafs.s
-@@ -188,3 +188,6 @@
-
-
- #endif /* ifdef VBE/AF is cool on this platform */
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/x/xdga2s.s
-+++ src/x/xdga2s.s
-@@ -51,3 +51,6 @@
- #endif
- #endif
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- src/x/xwins.s
-+++ src/x/xwins.s
-@@ -51,3 +51,6 @@
-
- #endif
-
-+#ifdef __ELF__
-+.section .note.GNU-stack,"",%progbits
-+#endif
diff --git a/media-libs/allegro/files/allegro-4.2.2-flags.patch b/media-libs/allegro/files/allegro-4.2.2-flags.patch
deleted file mode 100644
index c79e684151b2..000000000000
--- a/media-libs/allegro/files/allegro-4.2.2-flags.patch
+++ /dev/null
@@ -1,61 +0,0 @@
---- configure.in
-+++ configure.in
-@@ -280,11 +280,7 @@
- COMPILE_PROGRAM=COMPILE_NORMAL
- COMPILE_CXX_PROGRAM=COMPILE_CXX_NORMAL
- COMPILE_S_PROGRAM=COMPILE_S_NORMAL
-- if test "X$allegro_cv_prog_ld_s" = "Xyes"; then
-- PROG_LDFLAGS="-s \$(LDFLAGS)"
-- else
-- PROG_LDFLAGS="\$(LDFLAGS)"
-- fi
-+ PROG_LDFLAGS="\$(LDFLAGS)"
- LIB_TO_LINK=alleg
- PLUGIN_LIB=lib/unix/libaldat.a
- allegro_build_normal_library=yes
-@@ -761,11 +757,7 @@
- ALLEGRO_DEBUG_CFLAGS="$ALLEGRO_DEBUG_CFLAGS -DDMALLOC"
- fi
- ALLEGRO_PROFILE_CFLAGS="$CFLAGS -pg $TARGET_ARCH -O2 -funroll-loops -ffast-math $WFLAGS"
-- if test "X$allegro_cv_support_fomit_frame_pointer" = "Xyes"; then
-- CFLAGS="$CFLAGS $TARGET_ARCH -O2 -funroll-loops -ffast-math -fomit-frame-pointer $WFLAGS"
-- else
-- CFLAGS="$CFLAGS $TARGET_ARCH -O2 -funroll-loops -ffast-math $WFLAGS"
-- fi
-+ CFLAGS="$CFLAGS $WFLAGS"
- ALLEGRO_SFLAGS="-x assembler-with-cpp"
- ALLEGRO_SHAREDLIB_CFLAGS="-fPIC -DALLEGRO_SHARED"
- else
---- misc/allegro-config.in
-+++ misc/allegro-config.in
-@@ -21,7 +21,6 @@
-
- accepts_frameworks=no
-
--allegro_ldflags="@LDFLAGS@"
- allegro_libs="@LIBS@"
- allegro_frameworks="@FRAMEWORKS@"
- allegro_cflags=""
-@@ -180,9 +179,9 @@
- if test "$echo_libs" = "yes"; then
- libdirs=-L${exec_prefix}/lib
- if test "$static_libs" = "yes"; then
-- echo $libdirs $allegro_ldflags -l${lib_type} $allegro_libs
-+ echo $libdirs -l${lib_type} $allegro_libs
- else
-- echo $libdirs $allegro_ldflags -l${lib_type}-${version} -l${lib_type}_unsharable
-+ echo $libdirs -l${lib_type}-${version} -l${lib_type}_unsharable
- fi
- fi
-
---- misc/deplib.sh
-+++ misc/deplib.sh
-@@ -70,7 +70,7 @@
- done
- echo "$prev"
- echo ""
--write_code alleg LIBALLEG -s
-+write_code alleg LIBALLEG
- echo ""
- echo ""
-