BUG#299: GTK_gmodule_LIBRARY is optional just like GTK_gthread_LIBRARY.

This commit is contained in:
Brad King 2003-11-12 17:44:17 -05:00
parent ac8bf0d5ac
commit a65fd59c13
1 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,7 @@
# GTK_INCLUDE_DIR - Directories to include to use GTK
# GTK_LIBRARIES - Files to link against to use GTK
# GTK_FOUND - If false, don't try to use GTK
# GTK_GL_FOUND - If false, don't try to use GTK's GL features
# don't even bother under WIN32
IF(UNIX)
@ -130,8 +131,11 @@ IF(UNIX)
${GTK_glib_INCLUDE_PATH} )
SET( GTK_LIBRARIES ${GTK_gtk_LIBRARY}
${GTK_gdk_LIBRARY}
${GTK_gmodule_LIBRARY}
${GTK_glib_LIBRARY} )
IF(GTK_gmodule_LIBRARY)
SET(GTK_LIBRARIES ${GTK_LIBRARIES} ${GTK_gmodule_LIBRARY})
ENDIF(GTK_gmodule_LIBRARY)
IF(GTK_gthread_LIBRARY)
SET(GTK_LIBRARIES ${GTK_LIBRARIES} ${GTK_gthread_LIBRARY})
ENDIF(GTK_gthread_LIBRARY)