~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/rtaudio/rtaudio-config.in

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
if (test "x$#" != "x1") ; then
3
 
  echo "Usage: $0 [--libs | --cxxflags]"
4
 
  exit;
5
 
fi
6
 
 
7
 
LIBRARY="@LIBS@ @frameworks@"
8
 
CFLAGS="@audio_apis@"
9
 
 
10
 
if (test "x$1" == "x--libs") ; then
11
 
  echo "$LIBRARY"
12
 
elif (test "x$1" == "x--cflags") ; then
13
 
  echo "$CFLAGS"
14
 
else
15
 
  echo "Unknown option: $1"
16
 
fi