From b4e3c81aea1e216bcdaf2a9110178ab088d964ad Mon Sep 17 00:00:00 2001 From: Josh Yelon Date: Thu, 30 Aug 2007 21:10:07 +0000 Subject: [PATCH] Using private copy of OpenAL --- doc/makepanda/makepanda.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/makepanda/makepanda.py b/doc/makepanda/makepanda.py index c68afa0587..8a680c5bd8 100755 --- a/doc/makepanda/makepanda.py +++ b/doc/makepanda/makepanda.py @@ -1420,6 +1420,7 @@ def CompileLink(dll, obj, opts, ldef): if (opts.count("CGGL")): cmd = cmd + " -lCgGL" cmd = cmd + " -lCg " if (PkgSelected(opts,"FFMPEG")): cmd = cmd + ' -L' + THIRDPARTYLIBS + 'ffmpeg/lib -lavformat -lavcodec -lavformat -lavutil' + if (PkgSelected(opts,"OPENAL")): cmd = cmd + ' -L' + THIRDPARTYLIBS + 'openal/lib -lpandaopenal' if (PkgSelected(opts,"ZLIB")): cmd = cmd + " -lz" if (PkgSelected(opts,"PNG")): cmd = cmd + " -lpng" if (PkgSelected(opts,"JPEG")): cmd = cmd + " -ljpeg"