Bug 862428

Summary: Adding dependencies for freeglut
Product: [Fedora] Fedora Reporter: Minh Ngo <nlminhtl>
Component: freeglutAssignee: Tomas Smetana <tsmetana>
Status: CLOSED NOTABUG QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: rawhideCC: tsmetana
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2012-10-04 11:41:03 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Minh Ngo 2012-10-02 21:04:46 UTC
Please add libXmu-devel to freeglut-devel dependencies.

Simple cmake project cannot be built without it:
cmake_minimum_required(VERSION 2.8)
project(cg)

find_package(GLUT REQUIRED)

add_executable(cg main.cpp)

target_link_libraries(cg
	${GLUT_LIBRARIES}
)
__________________________________________________________
-- Configuring incomplete, errors occurred!
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
GLUT_Xmu_LIBRARY (ADVANCED)

Comment 1 Tomas Smetana 2012-10-04 11:41:03 UTC
There is nothing in freeglut that would require libXmu to be linked along freeglut.  There must be something broken in the project you are referring to.