ObjFW  Diff

Differences From Artifact [6ed1b48fa6]:

To Artifact [8b34782ddf]:


64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
	--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"
			printf "%s" "$LIBS"
			;;







|







64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
	--version	Outputs the installed version
__EOF__
	exit $1
}

test -z "$1" && show_help 1

while test -n "$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"
			printf "%s" "$LIBS"
			;;
164
165
166
167
168
169
170
171
172
173
174
		*)
			echo "Invalid option: $1" 1>&2
			exit 1
			;;
	esac
	shift

	test ! -z "$1" && printf " "
done

echo







|



164
165
166
167
168
169
170
171
172
173
174
		*)
			echo "Invalid option: $1" 1>&2
			exit 1
			;;
	esac
	shift

	test -n "$1" && printf " "
done

echo