~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Open Mash Cross Reference
mash/conf/configure.in.real

Component: ~ [ mash ] ~ [ apps ] ~ [ gsm ] ~ [ lib ] ~ [ otcl ] ~ [ srm ] ~ [ tcl8.3 ] ~ [ tclcl ] ~ [ tk8.3 ] ~ [ tutorials ] ~

  1 dnl configure.in.real --
  2 dnl
  3 dnl     autoconf rules to find the RealNetworks SDKs
  4 dnl
  5 dnl Copyright (c) 2000-2002 The Regents of the University of California.
  6 dnl All rights reserved.
  7 dnl
  8 dnl Redistribution and use in source and binary forms, with or without
  9 dnl modification, are permitted provided that the following conditions are met:
 10 dnl
 11 dnl A. Redistributions of source code must retain the above copyright notice,
 12 dnl    this list of conditions and the following disclaimer.
 13 dnl B. Redistributions in binary form must reproduce the above copyright
 14 dnl    notice, this list of conditions and the following disclaimer in the
 15 dnl    documentation and/or other materials provided with the distribution.
 16 dnl C. Neither the names of the copyright holders nor the names of its
 17 dnl    contributors may be used to endorse or promote products derived from
 18 dnl    this software without specific prior written permission.
 19 dnl
 20 dnl THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
 21 dnl IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 22 dnl THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 23 dnl PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
 24 dnl LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 25 dnl CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 26 dnl SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 27 dnl INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 28 dnl CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 29 dnl ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 30 dnl POSSIBILITY OF SUCH DAMAGE.
 31 dnl
 32 dnl $Header: /usr/mash/src/repository/conf/configure.in.real,v 1.4 2002/02/03 03:02:48 lim Exp $
 33 
 34 AC_ARG_WITH(real, [  --with-real=path   specify a pathname for RealNetworks SDKs], d=$withval, d="")
 35 
 36 REAL_VERS=6.0
 37 
 38 REAL_H_PLACES="\
 39                 ../real/include \
 40                 ../realproducersdk/include"
 41 REAL_H_PLACES_D="\
 42                 $d \
 43                 $d/include"
 44 
 45 REAL_LIB_PLACES="\
 46                 ../real/lib \
 47                 ../realproducersdk/lib"
 48 REAL_LIB_PLACES_D="\
 49                 $d \
 50                 $d/lib"
 51 
 52 
 53 NS_BEGIN_PACKAGE(Real)
 54 
 55 NS_CHECK_HEADER_PATH(pntypes.h, $REAL_H_PLACES, $d, $REAL_H_PLACES_D, V_INCLUDE_REAL, Real)
 56 
 57 NS_CHECK_LIB_PATH(enceng, $REAL_LIB_PLACES, $d, $REAL_LIB_PLACES_D, V_LIB_REAL, Real)
 58 
 59 NS_END_PACKAGE(Real, no)
 60 
 61 
 62 if $NS_PACKAGE_Real_VALID; then
 63     if test "x$enable_static" = xyes; then
 64         echo 'RealNetworks needs dynamic linking; disabling static'
 65         enable_static=no
 66     fi
 67 
 68     # RealNetworks needs this linker flag too
 69     V_LDFLAGS_REAL=-export-dynamic
 70 
 71     V_OBJ_REAL='$(REAL_OBJ)'
 72 
 73 else
 74     V_LDFLAGS_REAL=
 75 
 76     V_OBJ_REAL=
 77 fi
 78 
 79 AC_SUBST(V_LDFLAGS_REAL)
 80 AC_SUBST(V_LIB_REAL)
 81 AC_SUBST(V_OBJ_REAL)

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.