Changed the linux linking of -lgif to -lungif.

Fixed a typo in the Images name.
This commit is contained in:
Robert Osfield
2002-09-24 20:14:08 +00:00
parent 9546c73e39
commit f7c7740327
3 changed files with 3 additions and 3 deletions

View File

@@ -238,7 +238,7 @@ endif
PNG_LIBS = -lpng
JPEG_LIBS = -ljpeg
TIFF_LIB = -ltiff
GIF_LIBS = -lgif
GIF_LIBS = -lungif
MAKEDIST = $(TOPDIR)/Make/makerpms
endif

View File

@@ -60,7 +60,7 @@ PLUGIN_DIRS += png
PLUGIN_DIRS += jpeg
# comment in if you have libungif installed.
# PLUGIN_DIRS += gif
PLUGIN_DIRS += gif
# comment in if you have libtiff installed.
PLUGIN_DIRS += tiff

View File

@@ -542,7 +542,7 @@ osg::Node* createBackground()
{
// we'll create a texture mapped quad to sit behind the Geometry
osg::Image* image = osgDB::readImageFile("Imags/primitives.gif");
osg::Image* image = osgDB::readImageFile("Images/primitives.gif");
if (!image) return NULL;