~ubuntu-branches/ubuntu/breezy/pam/breezy

« back to all changes in this revision

Viewing changes to debian/patches/002_install_conf

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2004-06-28 14:28:08 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040628142808-adikk7vtfg3pzcjw
Tags: 0.76-22
* Add uploaders
* Document location of repository
* Fix options containing arguments in pam_unix, Closes: #254904

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
diff -urN Linux-PAM-0.72.bak/conf/install_conf Linux-PAM-0.72/conf/install_conf
2
 
--- Linux-PAM-0.72.bak/conf/install_conf        Sun Jul 12 01:17:14 1998
3
 
+++ Linux-PAM-0.72/conf/install_conf    Tue Dec 14 13:42:59 1999
4
 
@@ -2,11 +2,18 @@
5
 
 
6
 
 CONFILE="$FAKEROOT"$CONFIGED/pam.conf
7
 
 IGNORE_AGE=./.ignore_age
8
 
+QUIET_INSTALL=../.quiet_install
9
 
 CONF=./pam.conf
10
 
 
11
 
 echo
12
 
 
13
 
-if [ -f "$IGNORE_AGE" ]; then
14
 
+if [ -f "$QUIET_INSTALL" ]; then
15
 
+    if [ ! -f "$CONFILE" ]; then
16
 
+        yes="y"
17
 
+    else
18
 
+        yes="skip"
19
 
+    fi
20
 
+elif [ -f "$IGNORE_AGE" ]; then
21
 
        echo "you don't want to be bothered with the age of your $CONFILE file"
22
 
        yes="n"
23
 
 elif [ ! -f "$CONFILE" ] || [ "$CONF" -nt "$CONFILE" ]; then
24
 
diff -urN Linux-PAM-0.72.bak/defs/debian.defs Linux-PAM-0.72/defs/debian.defs
25
 
--- Linux-PAM-0.72.bak/defs/debian.defs Sun Nov 21 17:59:25 1999
26
 
+++ Linux-PAM-0.72/defs/debian.defs     Tue Dec 14 13:43:42 1999
27
 
@@ -7,7 +7,7 @@
28
 
 # installed files on the system.
29
 
 ##
30
 
 
31
 
-CFLAGS := -O2 -I${shell pwd}/include # -D__NO_STRING_INLINES
32
 
+CFLAGS := -O2 -D_GNU_SOURCE -D_REENTRANT
33
 
 ifneq (,$(findstring $(DEB_BUILD_OPTIONS),debug DEBUG Debug))
34
 
   CFLAGS += -g
35
 
 endif