annotate debian/postrm @ 11007:48b7d7aa444d

configure altivec patch by Magnus Damm <damm@opensource.se> * CC is not checked for Altivec support (see above). The patch adds checks for FSF-style flags and Darwin-style flags. The check is performed regardless of the gcc version. * Disabling of Altivec. --disable-altivec is broken today if /proc/cpuinfo shows that your cpu supports altivec. The patch takes care of that. * "GCC & CPU optimization abilities" always show that it is optimizing for the cpu configure is running on, it should show the optimization that is enabled for gcc instead. Cosmetic change only, but confusing as it is today IMHO. * Runtime CPU-detection now enables altivec for powerpc. Now with the patch it should be possible to use --enable-altivec, --disable-altivec, --enable-runtime-cpudetection regardless of powerpc cpu type. The configure script handles altivec support in the following order: 1. Altivec is enabled by default if your cpu supports it. 2. --enable-runtime-cpudetection will enable altivec support. 3. If you have forced altivec on/off with --enable-altivec/--disable-altivec, then your selection will override the previous altivec configuration. 4. If altivec is enabled but the compiler doesn't support it, altivec gets turned off.
author attila
date Sat, 04 Oct 2003 23:06:04 +0000
parents 02309ce6fc22
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7214
f335b0da380c Remove config files on purge.
diego
parents:
diff changeset
1 #!/bin/sh
f335b0da380c Remove config files on purge.
diego
parents:
diff changeset
2
f335b0da380c Remove config files on purge.
diego
parents:
diff changeset
3 set -e
f335b0da380c Remove config files on purge.
diego
parents:
diff changeset
4
f335b0da380c Remove config files on purge.
diego
parents:
diff changeset
5 if [ "$1" = "purge" ]; then
8908
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
6 if [ -e /usr/share/debconf/confmodule ]; then
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
7 # Source debconf library.
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
8 . /usr/share/debconf/confmodule
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
9 # Remove my changes to the db.
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
10 db_purge
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
11 fi
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
12
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
13 if [ -d /etc/mplayer/ ]; then
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
14 rm -rf /etc/mplayer/
8689fa04b837 Purge debconf database on purge.
eyck
parents: 7214
diff changeset
15 fi
7214
f335b0da380c Remove config files on purge.
diego
parents:
diff changeset
16 fi
8911
02309ce6fc22 Pass control to debhelper scripts
eyck
parents: 8908
diff changeset
17
02309ce6fc22 Pass control to debhelper scripts
eyck
parents: 8908
diff changeset
18 #DEBHELPER#