File: 00fax_locale.dpatch

package info (click to toggle)
efax 1%3A0.9a-20
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 452 kB
  • sloc: ansic: 4,629; sh: 932; makefile: 77
file content (32 lines) | stat: -rw-r--r-- 903 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#! /bin/sh -e
## 00fax_locale by Filippo Panessa
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Fixed fax (view|make|send) for all locales (Closes: #160926, #165832)

if [ $# -ne 1 ]; then
    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
    exit 1
fi
case "$1" in
	-patch) patch -f --no-backup-if-mismatch --dry-run -p1 < $0 && patch -f --no-backup-if-mismatch -p1 < $0;;
	-unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;;
	*)
		echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
		exit 1;;
esac
exit 0

@DPATCH@
diff -Nuar efax-0.9a.orig/efix.c efax-0.9a/efix.c
--- efax-0.9a.orig/efix.c	2000-02-06 23:36:25.000000000 +0100
+++ efax-0.9a/efix.c	2003-04-10 18:58:30.000000000 +0200
@@ -249,7 +249,7 @@
 
   argv0 = argv[0] ;
 
-  setlocale ( LC_ALL, "" ) ;
+  // setlocale ( LC_ALL, "" ) ;
 
   /* process arguments */