From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.1) Gecko/20031114 Description of problem: orbit2-config --libs --use-service=name returns -lORBitCosNaming when it should in fact return -lORBitCosNaming-2. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. orbit2-config --libs --use-service=name Actual Results: -pthread -Wl,--export-dynamic -lORBitCosNaming -lORBit-2 -lgobject-2.0 -lgthread-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lm Expected Results: -pthread -Wl,--export-dynamic -lORBitCosNaming-2 -lORBit-2 -lgobject-2.0 -lgthread-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lm Additional info: --- /usr/bin/orbit2-config~ 2003-10-22 23:41:40.000000000 +0200 +++ /usr/bin/orbit2-config 2004-02-20 14:20:04.000000000 +0100 @@ -95,7 +95,7 @@ --use-service=*) case $optarg in name) - services="$services -lORBitCosNaming" + services="$services -lORBitCosNaming-2" ;; *) usage
This script is deprecated and you should use $> pkg-config --libs ORBit-CosNaming-2.0 I've fixed this upstream anyway: 2004-03-19 Mark McLoughlin <mark> * orbit2-config.in: return -lORBitCosNaming-2 with --use-service=name rather than -lORBitCosNaming. This script is still deprecated old cruft, though.