ObjFW  Check-in [4c36c01ae3]

Overview
Comment:-framework has to be before -f* in objfw-compile.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4c36c01ae3c95e0c7b2f3f63f8a423c7888cd35893e2830c01f4fffe882134c5
User & Date: js on 2011-07-07 18:07:27
Other Links: manifest | tags
Context
2011-07-07
23:19
Fix missing character check in +[stringWithUTF16String:]. check-in: f6c05b68cf user: js tags: trunk
18:07
-framework has to be before -f* in objfw-compile. check-in: 4c36c01ae3 user: js tags: trunk
17:03
Add a note about the %@ format specifier. check-in: d0085d2c5d user: js tags: trunk
Changes

Modified utils/objfw-compile from [7b180ee5b0] to [b75d583b48].

103
104
105
106
107
108
109
110
111
112
113
114
115
116



117
118
119
120
121
122
123
		-D)
			shift
			CPPFLAGS="$CPPFLAGS -D$1"
			;;
		-D*)
			CPPFLAGS="$CPPFLAGS $1"
			;;
		-f*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-framework)
			shift
			LIBS="$LIBS -framework $1"
			;;



		-g*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-I)
			shift
			CPPFLAGS="$CPPFLAGS -I$1"
			;;







<
<
<




>
>
>







103
104
105
106
107
108
109



110
111
112
113
114
115
116
117
118
119
120
121
122
123
		-D)
			shift
			CPPFLAGS="$CPPFLAGS -D$1"
			;;
		-D*)
			CPPFLAGS="$CPPFLAGS $1"
			;;



		-framework)
			shift
			LIBS="$LIBS -framework $1"
			;;
		-f*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-g*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-I)
			shift
			CPPFLAGS="$CPPFLAGS -I$1"
			;;