ObjFW  Check-in [4282d03eda]

Overview
Comment:objfw-config: Return 1 when flags are missing.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4282d03edab789c2588d98792deffa0e4a6c13393c6b670c7e66a89426309089
User & Date: js on 2014-01-18 17:59:35
Other Links: manifest | tags
Context
2014-01-18
22:27
Disable fast enumeration for Apple GCC + ObjFW RT. check-in: 76e53b2e72 user: js tags: trunk
17:59
objfw-config: Return 1 when flags are missing. check-in: 4282d03eda user: js tags: trunk
15:22
apple-forwarding-ppc: Fix unknown section warning. check-in: d09f4b94f3 user: js tags: trunk
Changes

Modified utils/objfw-config.in from [464e52beda] to [15a12ffd38].

59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
	--lib-ldflags	Outputs LDFLAGS for building a library"
	--lib-prefix	Outputs the prefix for libraries"
	--lib-suffix	Outputs the suffix for libraries"
	--prog-suffix	Outputs the suffix for binaries"
	--static-libs	Outputs the required LIBS to link ObjFW statically
	--version	Outputs the installed version
__EOF__
	exit 0
}

test -z "$1" && show_help

while test ! -z "$1"; do
	case "$1" in
		--all)
			printf "%s %s %s " "$CFLAGS" "$CPPFLAGS" "$CXXFLAGS"
			printf "%s %s " "$OBJCFLAGS" "$LDFLAGS"
			printf "%s %s " "$LDFLAGS_REEXPORT" "$LDFLAGS_RPATH"







|


|







59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
	--lib-ldflags	Outputs LDFLAGS for building a library"
	--lib-prefix	Outputs the prefix for libraries"
	--lib-suffix	Outputs the suffix for libraries"
	--prog-suffix	Outputs the suffix for binaries"
	--static-libs	Outputs the required LIBS to link ObjFW statically
	--version	Outputs the installed version
__EOF__
	exit $1
}

test -z "$1" && show_help 1

while test ! -z "$1"; do
	case "$1" in
		--all)
			printf "%s %s %s " "$CFLAGS" "$CPPFLAGS" "$CXXFLAGS"
			printf "%s %s " "$OBJCFLAGS" "$LDFLAGS"
			printf "%s %s " "$LDFLAGS_REEXPORT" "$LDFLAGS_RPATH"