source: clfs-embedded/patches/libnl-git-fixes-1.patch @ 884672b

Last change on this file since 884672b was 884672b, checked in by Maarten Lankhorst <mlankhorst@…>, 15 years ago

book: Add hostapd and libnl to beyond section

  • Property mode set to 100644
File size: 3.9 KB
  • lib/Makefile.am

    diff --git a/lib/Makefile.am b/lib/Makefile.am
    index 3c1dca7..1c2ae99 100644
    a b  
    33AM_CFLAGS  = -Wall -I${top_srcdir}/include -D_GNU_SOURCE
    44
    55lib_LTLIBRARIES = \
    6         libnl.la libnl-genl.la libnl-nf.la libnl-route.la
     6        libnl.la libnl-genl.la libnl-route.la libnl-nf.la
    77
    88libnl_la_LDFLAGS = -version-info 2:0:0
    99libnl_la_SOURCES = \
  • src/Makefile.am

    diff --git a/src/Makefile.am b/src/Makefile.am
    index 0ffc26f..da2a9f5 100644
    a b noinst_PROGRAMS = \ 
    2020rtnl_utils_c = rtnl-utils.c utils.c
    2121
    2222genl_ctrl_list_SOURCES = genl-ctrl-list.c ctrl-utils.c utils.c
    23 genl_ctrl_list_LDADD = -lnl-genl
     23genl_ctrl_list_LDADD = -lnl-genl -lnl
    2424
    2525nf_ct_list_SOURCES = nf-ct-list.c ct-utils.c utils.c
    26 nf_ct_list_LDADD = -lnl-nf
     26nf_ct_list_LDADD = -lnl-nf -lnl-route -lnl
    2727nf_log_SOURCES = nf-log.c log-utils.c ${rtnl_utils_c}
    28 nf_log_LDADD = -lnl-nf
     28nf_log_LDADD = -lnl-nf -lnl-route -lnl
    2929nf_queue_SOURCES = nf-queue.c queue-utils.c ${rtnl_utils_c}
    30 nf_queue_LDADD = -lnl-nf
     30nf_queue_LDADD = -lnl-nf -lnl-route -lnl
    3131
    3232addr_c = addr-utils.c ${rtnl_utils_c}
    3333nl_addr_add_SOURCES = nl-addr-add.c ${addr_c}
    34 nl_addr_add_LDADD = -lnl-route
     34nl_addr_add_LDADD = -lnl-route -lnl
    3535nl_addr_delete_SOURCES = nl-addr-delete.c ${addr_c}
    36 nl_addr_delete_LDADD = -lnl-route
     36nl_addr_delete_LDADD = -lnl-route -lnl
    3737nl_addr_list_SOURCES = nl-addr-list.c ${addr_c}
    38 nl_addr_list_LDADD = -lnl-route
     38nl_addr_list_LDADD = -lnl-route -lnl
    3939
    4040link_c = link-utils.c ${rtnl_utils_c}
    4141nl_link_list_SOURCES = nl-link-list.c ${link_c}
    42 nl_link_list_LDADD = -lnl-route
     42nl_link_list_LDADD = -lnl-route -lnl
    4343nl_link_set_SOURCES = nl-link-set.c ${link_c}
    44 nl_link_set_LDADD = -lnl-route
     44nl_link_set_LDADD = -lnl-route -lnl
    4545nl_link_stats_SOURCES = nl-link-stats.c ${link_c}
    46 nl_link_stats_LDADD = -lnl-route
     46nl_link_stats_LDADD = -lnl-route -lnl
    4747nl_link_ifindex2name_SOURCES = nl-link-ifindex2name.c ${rtnl_utils_c}
    48 nl_link_ifindex2name_LDADD = -lnl-route
     48nl_link_ifindex2name_LDADD = -lnl-route -lnl
    4949nl_link_name2ifindex_SOURCES = nl-link-name2ifindex.c ${rtnl_utils_c}
    50 nl_link_name2ifindex_LDADD = -lnl-route
     50nl_link_name2ifindex_LDADD = -lnl-route -lnl
    5151
    5252nl_monitor_SOURCES = nl-monitor.c ${rtnl_utils_c}
    53 nl_monitor_LDADD = -lnl-route
     53nl_monitor_LDADD = -lnl-route -lnl
    5454
    5555neigh_c = neigh-utils.c ${rtnl_utils_c}
    5656nl_neigh_add_SOURCES = nl-neigh-add.c ${neigh_c}
    57 nl_neigh_add_LDADD = -lnl-route
     57nl_neigh_add_LDADD = -lnl-route -lnl
    5858nl_neigh_delete_SOURCES = nl-neigh-delete.c ${neigh_c}
    59 nl_neigh_delete_LDADD = -lnl-route
     59nl_neigh_delete_LDADD = -lnl-route -lnl
    6060nl_neigh_list_SOURCES = nl-neigh-list.c ${neigh_c}
    61 nl_neigh_list_LDADD = -lnl-route
     61nl_neigh_list_LDADD = -lnl-route -lnl
    6262
    6363nl_neightbl_list_SOURCES = nl-neightbl-list.c ${rtnl_utils_c}
    64 nl_neightbl_list_LDADD = -lnl-route
     64nl_neightbl_list_LDADD = -lnl-route -lnl
    6565
    6666qdisc_c = qdisc-utils.c ${rtnl_utils_c}
    6767nl_qdisc_delete_SOURCES = nl-qdisc-delete.c ${qdisc_c}
    68 nl_qdisc_delete_LDADD = -lnl-route
     68nl_qdisc_delete_LDADD = -lnl-route -lnl
    6969nl_qdisc_list_SOURCES = nl-qdisc-list.c ${qdisc_c}
    70 nl_qdisc_list_LDADD = -lnl-route
     70nl_qdisc_list_LDADD = -lnl-route -lnl
    7171
    7272route_c = route-utils.c ${rtnl_utils_c}
    7373nl_route_add_SOURCES = nl-route-add.c ${route_c}
    74 nl_route_add_LDADD = -lnl-route
     74nl_route_add_LDADD = -lnl-route -lnl
    7575nl_route_delete_SOURCES = nl-route-delete.c ${route_c}
    76 nl_route_delete_LDADD = -lnl-route
     76nl_route_delete_LDADD = -lnl-route -lnl
    7777nl_route_get_SOURCES = nl-route-get.c ${route_c}
    78 nl_route_get_LDADD = -lnl-route
     78nl_route_get_LDADD = -lnl-route -lnl
    7979nl_route_list_SOURCES = nl-route-list.c ${route_c}
    80 nl_route_list_LDADD = -lnl-route
     80nl_route_list_LDADD = -lnl-route -lnl
    8181
    8282nl_rule_list_SOURCES = nl-rule-list.c rule-utils.c ${rtnl_utils_c}
    83 nl_rule_list_LDADD = -lnl-route
     83nl_rule_list_LDADD = -lnl-route -lnl
    8484
    8585nl_tctree_list_SOURCES = nl-tctree-list.c ${rtnl_utils_c}
    86 nl_tctree_list_LDADD = -lnl-route
     86nl_tctree_list_LDADD = -lnl-route -lnl
Note: See TracBrowser for help on using the repository browser.