aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/libpng/libpng-config.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/libpng-config.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/libpng-config.in')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/libpng/libpng-config.in254
1 files changed, 127 insertions, 127 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/libpng/libpng-config.in b/libraries/irrlicht-1.8/source/Irrlicht/libpng/libpng-config.in
index 199ad87..69bf8e3 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/libpng/libpng-config.in
+++ b/libraries/irrlicht-1.8/source/Irrlicht/libpng/libpng-config.in
@@ -1,127 +1,127 @@
1#! /bin/sh 1#! /bin/sh
2 2
3# libpng-config 3# libpng-config
4# provides configuration info for libpng. 4# provides configuration info for libpng.
5 5
6# Copyright (C) 2002, 2004, 2006, 2007 Glenn Randers-Pehrson 6# Copyright (C) 2002, 2004, 2006, 2007 Glenn Randers-Pehrson
7 7
8# This code is released under the libpng license. 8# This code is released under the libpng license.
9# For conditions of distribution and use, see the disclaimer 9# For conditions of distribution and use, see the disclaimer
10# and license in png.h 10# and license in png.h
11 11
12# Modeled after libxml-config. 12# Modeled after libxml-config.
13 13
14version="@PNGLIB_VERSION@" 14version="@PNGLIB_VERSION@"
15prefix="@prefix@" 15prefix="@prefix@"
16exec_prefix="@exec_prefix@" 16exec_prefix="@exec_prefix@"
17libdir="@libdir@" 17libdir="@libdir@"
18includedir="@includedir@/libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@" 18includedir="@includedir@/libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@"
19libs="-lpng@PNGLIB_MAJOR@@PNGLIB_MINOR@" 19libs="-lpng@PNGLIB_MAJOR@@PNGLIB_MINOR@"
20all_libs="-lpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ @LIBS@" 20all_libs="-lpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ @LIBS@"
21I_opts="-I${includedir}" 21I_opts="-I${includedir}"
22L_opts="-L${libdir}" 22L_opts="-L${libdir}"
23R_opts="" 23R_opts=""
24cppflags="" 24cppflags=""
25ccopts="" 25ccopts=""
26ldopts="" 26ldopts=""
27 27
28usage() 28usage()
29{ 29{
30 cat <<EOF 30 cat <<EOF
31Usage: $0 [OPTION] ... 31Usage: $0 [OPTION] ...
32 32
33Known values for OPTION are: 33Known values for OPTION are:
34 34
35 --prefix print libpng prefix 35 --prefix print libpng prefix
36 --libdir print path to directory containing library 36 --libdir print path to directory containing library
37 --libs print library linking information 37 --libs print library linking information
38 --ccopts print compiler options 38 --ccopts print compiler options
39 --cppflags print pre-processor flags 39 --cppflags print pre-processor flags
40 --cflags print preprocessor flags, I_opts, and compiler options 40 --cflags print preprocessor flags, I_opts, and compiler options
41 --I_opts print "-I" include options 41 --I_opts print "-I" include options
42 --L_opts print linker "-L" flags for dynamic linking 42 --L_opts print linker "-L" flags for dynamic linking
43 --R_opts print dynamic linker "-R" or "-rpath" flags 43 --R_opts print dynamic linker "-R" or "-rpath" flags
44 --ldopts print linker options 44 --ldopts print linker options
45 --ldflags print linker flags (ldopts, L_opts, R_opts, and libs) 45 --ldflags print linker flags (ldopts, L_opts, R_opts, and libs)
46 --static revise subsequent outputs for static linking 46 --static revise subsequent outputs for static linking
47 --help print this help and exit 47 --help print this help and exit
48 --version print version information 48 --version print version information
49EOF 49EOF
50 50
51 exit $1 51 exit $1
52} 52}
53 53
54if test $# -eq 0; then 54if test $# -eq 0; then
55 usage 1 55 usage 1
56fi 56fi
57 57
58while test $# -gt 0; do 58while test $# -gt 0; do
59 case "$1" in 59 case "$1" in
60 60
61 --prefix) 61 --prefix)
62 echo ${prefix} 62 echo ${prefix}
63 ;; 63 ;;
64 64
65 --version) 65 --version)
66 echo ${version} 66 echo ${version}
67 exit 0 67 exit 0
68 ;; 68 ;;
69 69
70 --help) 70 --help)
71 usage 0 71 usage 0
72 ;; 72 ;;
73 73
74 --ccopts) 74 --ccopts)
75 echo ${ccopts} 75 echo ${ccopts}
76 ;; 76 ;;
77 77
78 --cppflags) 78 --cppflags)
79 echo ${cppflags} 79 echo ${cppflags}
80 ;; 80 ;;
81 81
82 --cflags) 82 --cflags)
83 echo ${I_opts} ${cppflags} ${ccopts} 83 echo ${I_opts} ${cppflags} ${ccopts}
84 ;; 84 ;;
85 85
86 --libdir) 86 --libdir)
87 echo ${libdir} 87 echo ${libdir}
88 ;; 88 ;;
89 89
90 --libs) 90 --libs)
91 echo ${libs} 91 echo ${libs}
92 ;; 92 ;;
93 93
94 --I_opts) 94 --I_opts)
95 echo ${I_opts} 95 echo ${I_opts}
96 ;; 96 ;;
97 97
98 --L_opts) 98 --L_opts)
99 echo ${L_opts} 99 echo ${L_opts}
100 ;; 100 ;;
101 101
102 --R_opts) 102 --R_opts)
103 echo ${R_opts} 103 echo ${R_opts}
104 ;; 104 ;;
105 105
106 --ldopts) 106 --ldopts)
107 echo ${ldopts} 107 echo ${ldopts}
108 ;; 108 ;;
109 109
110 --ldflags) 110 --ldflags)
111 echo ${ldopts} ${L_opts} ${R_opts} ${libs} 111 echo ${ldopts} ${L_opts} ${R_opts} ${libs}
112 ;; 112 ;;
113 113
114 --static) 114 --static)
115 R_opts="" 115 R_opts=""
116 libs=${all_libs} 116 libs=${all_libs}
117 ;; 117 ;;
118 118
119 *) 119 *)
120 usage 120 usage
121 exit 1 121 exit 1
122 ;; 122 ;;
123 esac 123 esac
124 shift 124 shift
125done 125done
126 126
127exit 0 127exit 0