lkml.org 
[lkml]   [2007]   [Jan]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[2.6 patch] NF_CONNTRACK_H323 must depend on (IPV6 || IPV6=n)
    On Sun, Jan 28, 2007 at 11:41:48AM -0800, Randy Dunlap wrote:
    >...
    > net/built-in.o: In function `q931_help':
    > nf_conntrack_h323_main.c:(.text.q931_help+0x6ad): undefined reference to `ip6_route_output'
    > nf_conntrack_h323_main.c:(.text.q931_help+0x6c3): undefined reference to `ip6_route_output'
    >...

    You didn't send your .config, but it seems you had CONFIG_IPV6=m and
    CONFIG_NF_CONNTRACK_H323=y.

    In this case, the untested patch below should fix it.

    > ~Randy

    cu
    Adrian


    <-- snip -->


    CONFIG_IPV6=m, CONFIG_NF_CONNTRACK_H323=y results in a compile error.

    Fix this by letting NF_CONNTRACK_H323 depend on (IPV6 || IPV6=n).

    Signed-off-by: Adrian Bunk <bunk@stusta.de>

    --- linux-2.6.20-rc6-mm1/net/netfilter/Kconfig.old 2007-01-28 23:06:37.000000000 +0100
    +++ linux-2.6.20-rc6-mm1/net/netfilter/Kconfig 2007-01-28 23:06:49.000000000 +0100
    @@ -165,7 +165,7 @@

    config NF_CONNTRACK_H323
    tristate "H.323 protocol support (EXPERIMENTAL)"
    - depends on EXPERIMENTAL && NF_CONNTRACK
    + depends on EXPERIMENTAL && NF_CONNTRACK && (IPV6 || IPV6=n)
    help
    H.323 is a VoIP signalling protocol from ITU-T. As one of the most
    important VoIP protocols, it is widely used by voice hardware and
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/

    \
     
     \ /
      Last update: 2007-01-28 23:23    [W:4.534 / U:0.068 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site