Ticket #38 (closed defect: fixed)

Opened 1 year ago

Last modified 1 year ago

OpenSG Makefiles

Reported by: dirk Assigned to:
Priority: minor Milestone:
Component: Build System Version:
Keywords: Cc:
Completion:

Description

The OpenSG Makefiles (samples/OpenSG/simple/OpenSGNav/Makefile.in, samples/OpenSG/advanced/OpenSGViewer/Makefile.in and samples/OpenSG/advanced/OpenSGNavGrab/Makefile.in) use the following to get OpenSG options:

OPENSG_LIBS= $(shell osg-config —libs) -lOSGBase -lOSGSystem OPENSG_CFLAGS= $(shell osg-config —cflags)

That's not correct, as osg-config needs to know which libs to create options for, and what their dependencies are. Please change that to:

OPENSG_LIBS= $(shell osg-config —libs Base System) OPENSG_CFLAGS= $(shell osg-config —cflags Base System)

Thanks

Dirk

Change History

06/26/07 17:14:42 changed by patrick

  • status changed from new to closed.
  • resolution set to fixed.

This has been fixed on the trunk (r20339), the 2.2 branch (r20340), and the 2.0 branch (r20341).