aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/libpng-config-body.in
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/libpng-config-body.in
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/libpng-config-body.in')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/libpng-config-body.in192
1 files changed, 96 insertions, 96 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/libpng-config-body.in b/libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/libpng-config-body.in
index 0db8898..b466432 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/libpng-config-body.in
+++ b/libraries/irrlicht-1.8/source/Irrlicht/libpng/scripts/libpng-config-body.in
@@ -1,96 +1,96 @@
1 1
2usage() 2usage()
3{ 3{
4 cat <<EOF 4 cat <<EOF
5Usage: libpng-config [OPTION] ... 5Usage: libpng-config [OPTION] ...
6 6
7Known values for OPTION are: 7Known values for OPTION are:
8 8
9 --prefix print libpng prefix 9 --prefix print libpng prefix
10 --libdir print path to directory containing library 10 --libdir print path to directory containing library
11 --libs print library linking information 11 --libs print library linking information
12 --ccopts print compiler options 12 --ccopts print compiler options
13 --cppflags print pre-processor flags 13 --cppflags print pre-processor flags
14 --cflags print preprocessor flags, I_opts, and compiler options 14 --cflags print preprocessor flags, I_opts, and compiler options
15 --I_opts print "-I" include options 15 --I_opts print "-I" include options
16 --L_opts print linker "-L" flags for dynamic linking 16 --L_opts print linker "-L" flags for dynamic linking
17 --R_opts print dynamic linker "-R" or "-rpath" flags 17 --R_opts print dynamic linker "-R" or "-rpath" flags
18 --ldopts print linker options 18 --ldopts print linker options
19 --ldflags print linker flags (ldopts, L_opts, R_opts, and libs) 19 --ldflags print linker flags (ldopts, L_opts, R_opts, and libs)
20 --static revise subsequent outputs for static linking 20 --static revise subsequent outputs for static linking
21 --help print this help and exit 21 --help print this help and exit
22 --version print version information 22 --version print version information
23EOF 23EOF
24 24
25 exit $1 25 exit $1
26} 26}
27 27
28if test $# -eq 0; then 28if test $# -eq 0; then
29 usage 1 29 usage 1
30fi 30fi
31 31
32while test $# -gt 0; do 32while test $# -gt 0; do
33 case "$1" in 33 case "$1" in
34 34
35 --prefix) 35 --prefix)
36 echo ${prefix} 36 echo ${prefix}
37 ;; 37 ;;
38 38
39 --version) 39 --version)
40 echo ${version} 40 echo ${version}
41 exit 0 41 exit 0
42 ;; 42 ;;
43 43
44 --help) 44 --help)
45 usage 0 45 usage 0
46 ;; 46 ;;
47 47
48 --ccopts) 48 --ccopts)
49 echo ${ccopts} 49 echo ${ccopts}
50 ;; 50 ;;
51 51
52 --cppflags) 52 --cppflags)
53 echo ${cppflags} 53 echo ${cppflags}
54 ;; 54 ;;
55 55
56 --cflags) 56 --cflags)
57 echo ${I_opts} ${cppflags} ${ccopts} 57 echo ${I_opts} ${cppflags} ${ccopts}
58 ;; 58 ;;
59 59
60 --libdir) 60 --libdir)
61 echo ${libdir} 61 echo ${libdir}
62 ;; 62 ;;
63 63
64 --libs) 64 --libs)
65 echo ${libs} 65 echo ${libs}
66 ;; 66 ;;
67 67
68 --I_opts) 68 --I_opts)
69 echo ${I_opts} 69 echo ${I_opts}
70 ;; 70 ;;
71 71
72 --L_opts) 72 --L_opts)
73 echo ${L_opts} 73 echo ${L_opts}
74 ;; 74 ;;
75 75
76 --R_opts) 76 --R_opts)
77 echo ${R_opts} 77 echo ${R_opts}
78 ;; 78 ;;
79 79
80 --ldflags) 80 --ldflags)
81 echo ${ldflags} ${L_opts} ${R_opts} ${libs} 81 echo ${ldflags} ${L_opts} ${R_opts} ${libs}
82 ;; 82 ;;
83 83
84 --static) 84 --static)
85 R_opts="" 85 R_opts=""
86 ;; 86 ;;
87 87
88 *) 88 *)
89 usage 89 usage
90 exit 1 90 exit 1
91 ;; 91 ;;
92 esac 92 esac
93 shift 93 shift
94done 94done
95 95
96exit 0 96exit 0