Changeset 5654:25b8ac2d3613 in roaraudio


Ignore:
Timestamp:
09/14/12 04:16:30 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

build CPI objects based on configure options

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/clients.c

    r5640 r5654  
    3434 
    3535static struct roar_dl_proto 
     36#if !defined(ROAR_WITHOUT_DCOMP_EMUL_ESD) && defined(ROAR_HAVE_H_ESD) 
    3637__proto_common_esd = { 
    3738 .proto = ROAR_PROTO_ESOUND, 
     
    3940 .flags = ROAR_DL_PROTO_FLAGS_NONE, 
    4041 .handle = emul_esd_check_client 
    41 }, __proto_common_rplay = { 
     42}, 
     43#endif 
     44#ifndef ROAR_WITHOUT_DCOMP_EMUL_RPLAY 
     45__proto_common_rplay = { 
    4246 .proto = ROAR_PROTO_RPLAY, 
    4347 .description = "RPlay emulation", 
    4448 .flags = ROAR_DL_PROTO_FLAGS_NONE, 
    4549 .handle = emul_rplay_check_client 
    46 }, __proto_common_gopher = { 
     50}, 
     51#endif 
     52#ifndef ROAR_WITHOUT_DCOMP_EMUL_GOPHER 
     53__proto_common_gopher = { 
    4754 .proto = ROAR_PROTO_GOPHER, 
    4855 .description = "The Internet Gopher Protocol", 
     
    5057 .handle = emul_gopher_check_client, 
    5158 .flushed = emul_gopher_flushed_client 
    52 }; 
     59} 
     60#endif 
     61; 
    5362 
    5463static struct roard_proto_handle __protos[MAX_PROTOS] = { 
Note: See TracChangeset for help on using the changeset viewer.