From: lisu Date: Tue, 16 Mar 2010 11:13:32 +0000 (+0000) Subject: - obsoleted X-Git-Tag: auto/th/allegro-4_4_1_1-1~4 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fallegro.git;a=commitdiff_plain;h=cfb6117e7a538fcae453ef297f795052948686a3 - obsoleted Changed files: allegro-examples.patch -> 1.6 allegro-ldflags.patch -> 1.3 allegro-opt.patch -> 1.10 --- diff --git a/allegro-examples.patch b/allegro-examples.patch deleted file mode 100644 index aa85db2..0000000 --- a/allegro-examples.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- allegro-4.1.17/makefile.in.orig 2004-12-02 02:02:14.000000000 +0100 -+++ allegro-4.1.17/makefile.in 2005-01-16 22:24:04.277495544 +0100 -@@ -527,7 +527,7 @@ - $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/allegro/platform/; \ - done - --INSTALL_EXES = $(filter tools/%, $(ALLEGRO_LIB_EXES) $(ALLEGRO_DATAFILE_EXES)) -+INSTALL_EXES = $(filter tools/% demo/% setup/% tests/% examples/%, $(ALLEGRO_EXE_TARGETS)) - - install-programs: $(INSTALL_EXES) - $(mkinstalldirs) $(DESTDIR)$(bindir) -@@ -618,9 +618,9 @@ - rm -rf $(includedir)/allegro - - uninstall-programs: -- @for prog in $(ALLEGRO_LIB_EXES) $(ALLEGRO_DATAFILE_EXES); do \ -- if test "X`echo $$prog | sed -e s,tools/.\*,,`" = X; then \ -- p=`echo $$prog | sed -e s,tools/,,`; \ -+ @for prog in $(ALLEGRO_EXE_TARGETS); do \ -+ if test "X`echo $$prog | sed -e s,.*/.\*,,`" = X; then \ -+ p=`echo $$prog | sed -e s,,,`; \ - echo rm -f $(bindir)/$$p; \ - rm -f $(bindir)/$$p; \ - fi; \ diff --git a/allegro-ldflags.patch b/allegro-ldflags.patch deleted file mode 100644 index f339111..0000000 --- a/allegro-ldflags.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ruN allegro-4.1.11./misc/allegro-config.in allegro-4.1.11/misc/allegro-config.in ---- allegro-4.1.11./misc/allegro-config.in 2003-06-30 01:27:31.000000000 +0200 -+++ allegro-4.1.11/misc/allegro-config.in 2003-08-25 00:50:30.000000000 +0200 -@@ -21,7 +21,7 @@ - - accepts_frameworks=no - --allegro_ldflags="@LDFLAGS@" -+allegro_ldflags="" - allegro_libs="@LIBS@" - allegro_frameworks="@FRAMEWORKS@" - allegro_cflags="" diff --git a/allegro-opt.patch b/allegro-opt.patch deleted file mode 100644 index cb22311..0000000 --- a/allegro-opt.patch +++ /dev/null @@ -1,57 +0,0 @@ ---- aa/allegro-4.1.15/configure.in 2004-04-27 13:53:02.000000000 +0200 -+++ allegro-4.1.15/configure.in 2004-05-23 21:18:36.478313632 +0200 -@@ -720,38 +720,7 @@ - - dnl How to compile C and asm files. - if test -n "$GCC"; then -- if test "X$allegro_strict_warnings" = "Xyes"; then -- WFLAGS="-Wall -W -Wstrict-prototypes -Wno-unused-parameter -Werror" -- else -- WFLAGS="-Wall -Wno-unused" -- fi -- if test "X$allegro_cv_processor_type" = "Xi386"; then -- if test "$allegro_exclusive_optimizations" != none; then -- TARGET_ARCH="-march=$allegro_exclusive_optimizations" -- elif test "X$allegro_cv_support_i386_mtune" = "Xyes"; then -- TARGET_ARCH="-mtune=$allegro_optimizations" -- else -- TARGET_ARCH="-mcpu=$allegro_optimizations" -- fi -- elif test "X$allegro_cv_processor_type" = "Xamd64"; then -- dnl Change default pentium->athlon64 -- if test "X$allegro_optimizations" = "Xpentium"; then -- allegro_optimizations="k8" -- fi -- if test "$allegro_exclusive_optimizations" != none; then -- TARGET_ARCH="-march=$allegro_exclusive_optimizations" -- elif test "X$allegro_cv_support_amd64_mtune" = "Xyes"; then -- TARGET_ARCH="-mtune=$allegro_optimizations" -- else -- TARGET_ARCH="-mcpu=$allegro_optimizations" -- fi -- else -- TARGET_ARCH= -- fi -- dnl Allow to specify additional flags. -- CFLAGS="$CFLAGS $XCFLAGS" -- WFLAGS="$WFLAGS $WCFLAGS" -- dnl In this order... -+ WFLAGS="-Wall -Wno-unused" - ALLEGRO_DEBUG_CFLAGS="$CFLAGS -g $WFLAGS -DDEBUGMODE" - if test "X$allegro_debug_with_fortify" = "Xyes"; then - ALLEGRO_DEBUG_CFLAGS="$ALLEGRO_DEBUG_CFLAGS -DFORTIFY" -@@ -759,12 +728,8 @@ - if test "X$allegro_debug_with_dmalloc" = "Xyes"; then - 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 $TARGET_ARCH" -+ ALLEGRO_PROFILE_CFLAGS="$CFLAGS -pg $WFLAGS" - ALLEGRO_SFLAGS="-x assembler-with-cpp" - ALLEGRO_SHAREDLIB_CFLAGS="-fPIC -DALLEGRO_SHARED" - else