]> git.pld-linux.org Git - packages/allegro5.git/commitdiff
- obsoleted
authorlisu <lisu@pld-linux.org>
Tue, 16 Mar 2010 11:13:32 +0000 (11:13 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    allegro-examples.patch -> 1.6
    allegro-ldflags.patch -> 1.3
    allegro-opt.patch -> 1.10

allegro-examples.patch [deleted file]
allegro-ldflags.patch [deleted file]
allegro-opt.patch [deleted file]

diff --git a/allegro-examples.patch b/allegro-examples.patch
deleted file mode 100644 (file)
index aa85db2..0000000
+++ /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 (file)
index f339111..0000000
+++ /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 (file)
index cb22311..0000000
+++ /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
This page took 0.122553 seconds and 4 git commands to generate.