ObjFW  Check-in [c63017b1f3]

Overview
Comment:Add --all to objfw-config.in.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c63017b1f328c81390f4ac2039bdaa26a2aac9535a1297d70509f553996f912e
User & Date: js on 2009-06-01 01:15:44
Other Links: manifest | tags
Context
2009-06-01
01:31
Fix recursive locking. check-in: 5bd604a8f8 user: js tags: trunk
01:15
Add --all to objfw-config.in. check-in: c63017b1f3 user: js tags: trunk
2009-05-29
19:21
A few renames. check-in: 033054ad75 user: js tags: trunk
Changes

Modified objfw-config.in from [87abe03638] to [00d761a00d].

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
OBJCFLAGS="$OBJCFLAGS @NO_CONST_CFSTRINGS@"
LIBS="-L@libdir@ -lobjfw @LIBS@"
VERSION="0.1"

show_help() {
	echo "$0: Available arguments are:"
	echo

	echo "	--cflags	Outputs the required CFLAGS"
	echo "	--cppflags	Outputs the required CPPFLAGS"
	echo "	--cxxflags	Outputs the required CXXFLAGS"
	echo "	--objcflags	Outputs the required OBJCFLAGS"
	echo "	--libs		Outputs the required LIBS"
	echo "	--version	Outputs the installed version"
	echo
	exit 0
}

test -z "$1" && show_help

while test ! -z "$1"; do
	case "$1" in







		--cflags)
			echo "$CFLAGS"
			;;
		--cppflags)
			echo "$CPPFLAGS"
			;;
		--cxxflags)
			echo "$CXXFLAGS"
			;;
		--objcflags)
			echo "$OBJCFLAGS"
			;;
		--libs)
			echo "$LIBS"
			;;
		--version)
			echo "$VERSION"
			;;
		*)
			echo "Invalid option: $1"
			exit 1
			;;
	esac

	shift
done







>














>
>
>
>
>
>
>



















|






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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
OBJCFLAGS="$OBJCFLAGS @NO_CONST_CFSTRINGS@"
LIBS="-L@libdir@ -lobjfw @LIBS@"
VERSION="0.1"

show_help() {
	echo "$0: Available arguments are:"
	echo
	echo "	--all		Outputs all flags + libs"
	echo "	--cflags	Outputs the required CFLAGS"
	echo "	--cppflags	Outputs the required CPPFLAGS"
	echo "	--cxxflags	Outputs the required CXXFLAGS"
	echo "	--objcflags	Outputs the required OBJCFLAGS"
	echo "	--libs		Outputs the required LIBS"
	echo "	--version	Outputs the installed version"
	echo
	exit 0
}

test -z "$1" && show_help

while test ! -z "$1"; do
	case "$1" in
		--all)
			echo "$CFLAGS"
			echo "$CPPFLAGS"
			echo "$CXXFLAGS"
			echo "$OBJCFLAGS"
			echo "$LIBS"
			;;
		--cflags)
			echo "$CFLAGS"
			;;
		--cppflags)
			echo "$CPPFLAGS"
			;;
		--cxxflags)
			echo "$CXXFLAGS"
			;;
		--objcflags)
			echo "$OBJCFLAGS"
			;;
		--libs)
			echo "$LIBS"
			;;
		--version)
			echo "$VERSION"
			;;
		*)
			echo "Invalid option: $1" >/dev/stderr
			exit 1
			;;
	esac

	shift
done