package freeimage: fix test program for stable branch

This commit is contained in:
Tony Theodore 2013-03-12 03:57:20 +11:00
parent 6edd87aac4
commit 120046cdac
2 changed files with 2 additions and 2 deletions

View File

@ -11,6 +11,6 @@ int main(int argc, char* argv[])
(void)argc;
(void)argv;
printf("%s\n", FreeImage_GetVersion());
printf("FreeImage: %s\n", FreeImage_GetVersion());
return 0;
}

View File

@ -31,6 +31,6 @@ define $(PKG)_BUILD
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-$(PKG).exe' \
'$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-freeimage.exe' \
-lfreeimage -DFREEIMAGE_LIB
endef