Skip to content

Commit 4d14ba3

Browse files
committed
Re-gen.
1 parent ed37c96 commit 4d14ba3

File tree

14 files changed

+413
-259
lines changed

14 files changed

+413
-259
lines changed

autosrc/Makefile.ami

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@ rtpp_refproxy_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.h $(RTPP_AUTOSRC_
6060
SRCS_AUTOGEN_DEBUG += $(rtpp_refproxy_AUTOSRCS)
6161
rtpp_command_reply_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.c
6262
SRCS_AUTOGEN_DEBUG += $(rtpp_command_reply_AUTOSRCS)
63+
rtpp_genuid_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.c
64+
SRCS_AUTOGEN_DEBUG += $(rtpp_genuid_AUTOSRCS)

autosrc/rtpp_genuid_fin.c

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/* Auto-generated by genfincode_stat.sh - DO NOT EDIT! */
2+
#include <stdio.h>
3+
#include <stdint.h>
4+
#include <stdlib.h>
5+
#define RTPP_FINCODE
6+
#include "rtpp_types.h"
7+
#include "rtpp_debug.h"
8+
#include "rtpp_genuid.h"
9+
#include "rtpp_genuid_fin.h"
10+
static void rtpp_genuid_gen_fin(void *pub) {
11+
fprintf(stderr, "Method rtpp_genuid@%p::gen (rtpp_genuid_gen) is invoked after destruction\x0a", pub);
12+
RTPP_AUTOTRAP();
13+
}
14+
static const struct rtpp_genuid_smethods rtpp_genuid_smethods_fin = {
15+
.gen = (rtpp_genuid_gen_t)&rtpp_genuid_gen_fin,
16+
};
17+
void rtpp_genuid_fin(struct rtpp_genuid *pub) {
18+
RTPP_DBG_ASSERT(pub->smethods->gen != (rtpp_genuid_gen_t)NULL);
19+
RTPP_DBG_ASSERT(pub->smethods != &rtpp_genuid_smethods_fin &&
20+
pub->smethods != NULL);
21+
pub->smethods = &rtpp_genuid_smethods_fin;
22+
}
23+
#if defined(RTPP_FINTEST)
24+
#include <assert.h>
25+
#include <stddef.h>
26+
#include "rtpp_mallocs.h"
27+
#include "rtpp_refcnt.h"
28+
#include "rtpp_linker_set.h"
29+
#define CALL_TFIN(pub, fn) ((void (*)(typeof(pub)))((pub)->smethods->fn))(pub)
30+
31+
void
32+
rtpp_genuid_fintest()
33+
{
34+
int naborts_s;
35+
36+
struct {
37+
struct rtpp_genuid pub;
38+
} *tp;
39+
40+
naborts_s = _naborts;
41+
tp = rtpp_rzmalloc(sizeof(*tp), offsetof(typeof(*tp), pub.rcnt));
42+
assert(tp != NULL);
43+
assert(tp->pub.rcnt != NULL);
44+
static const struct rtpp_genuid_smethods dummy = {
45+
.gen = (rtpp_genuid_gen_t)((void *)0x1),
46+
};
47+
tp->pub.smethods = &dummy;
48+
CALL_SMETHOD(tp->pub.rcnt, attach, (rtpp_refcnt_dtor_t)&rtpp_genuid_fin,
49+
&tp->pub);
50+
RTPP_OBJ_DECREF(&(tp->pub));
51+
CALL_TFIN(&tp->pub, gen);
52+
assert((_naborts - naborts_s) == 1);
53+
}
54+
DATA_SET(rtpp_fintests, rtpp_genuid_fintest);
55+
#endif /* RTPP_FINTEST */

autosrc/rtpp_genuid_fin.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/* Auto-generated by genfincode_stat.sh - DO NOT EDIT! */
2+
#if !defined(_rtpp_genuid_fin_h)
3+
#define _rtpp_genuid_fin_h
4+
#if !defined(RTPP_AUTOTRAP)
5+
#define RTPP_AUTOTRAP() abort()
6+
#else
7+
extern int _naborts;
8+
#endif
9+
#if defined(RTPP_DEBUG)
10+
struct rtpp_genuid;
11+
void rtpp_genuid_fin(struct rtpp_genuid *);
12+
#else
13+
#define rtpp_genuid_fin(arg) /* nop */
14+
#endif
15+
#if defined(RTPP_FINTEST)
16+
void rtpp_genuid_fintest(void);
17+
#endif /* RTPP_FINTEST */
18+
#endif /* _rtpp_genuid_fin_h */

extractaudio/Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,8 @@ SRCS_AUTOGEN_DEBUG = $(rtpp_netaddr_AUTOSRCS) \
530530
$(rtpp_ringbuf_AUTOSRCS) $(rtpp_sessinfo_AUTOSRCS) \
531531
$(rtpp_rw_lock_AUTOSRCS) $(rtpp_proc_servers_AUTOSRCS) \
532532
$(rtpp_proc_wakeup_AUTOSRCS) $(rtpp_socket_AUTOSRCS) \
533-
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS)
533+
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS) \
534+
$(rtpp_genuid_AUTOSRCS)
534535
rtpp_command_rcache_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.c
535536
rtpp_log_obj_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.c
536537
rtpp_port_table_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.c
@@ -560,6 +561,7 @@ rtpp_proc_wakeup_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_proc_wakeup_fin.h $(RTPP_AU
560561
rtpp_socket_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.c
561562
rtpp_refproxy_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.c
562563
rtpp_command_reply_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.c
564+
rtpp_genuid_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.c
563565
extractaudio_BASESOURCES = extractaudio.c decoder.c rtpp_loader.c \
564566
$(MAINSRCDIR)/rtp.c $(MAINSRCDIR)/rtp_analyze.c \
565567
$(MAINSRCDIR)/rtpp_util.c $(MAINSRCDIR)/rtpp_time.c decoder.h \

libre/Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,8 @@ SRCS_AUTOGEN_DEBUG = $(rtpp_netaddr_AUTOSRCS) \
539539
$(rtpp_ringbuf_AUTOSRCS) $(rtpp_sessinfo_AUTOSRCS) \
540540
$(rtpp_rw_lock_AUTOSRCS) $(rtpp_proc_servers_AUTOSRCS) \
541541
$(rtpp_proc_wakeup_AUTOSRCS) $(rtpp_socket_AUTOSRCS) \
542-
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS)
542+
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS) \
543+
$(rtpp_genuid_AUTOSRCS)
543544
rtpp_command_rcache_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.c
544545
rtpp_log_obj_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.c
545546
rtpp_port_table_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.c
@@ -569,6 +570,7 @@ rtpp_proc_wakeup_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_proc_wakeup_fin.h $(RTPP_AU
569570
rtpp_socket_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.c
570571
rtpp_refproxy_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.c
571572
rtpp_command_reply_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.c
573+
rtpp_genuid_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.c
572574
RE_DIR = $(top_srcdir)/external/libre
573575
RE_SDIR = $(RE_DIR)/src
574576
noinst_LTLIBRARIES = libre.la libre_debug.la

libucl/Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,8 @@ SRCS_AUTOGEN_DEBUG = $(rtpp_netaddr_AUTOSRCS) \
448448
$(rtpp_ringbuf_AUTOSRCS) $(rtpp_sessinfo_AUTOSRCS) \
449449
$(rtpp_rw_lock_AUTOSRCS) $(rtpp_proc_servers_AUTOSRCS) \
450450
$(rtpp_proc_wakeup_AUTOSRCS) $(rtpp_socket_AUTOSRCS) \
451-
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS)
451+
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS) \
452+
$(rtpp_genuid_AUTOSRCS)
452453
rtpp_command_rcache_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.c
453454
rtpp_log_obj_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.c
454455
rtpp_port_table_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.c
@@ -478,6 +479,7 @@ rtpp_proc_wakeup_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_proc_wakeup_fin.h $(RTPP_AU
478479
rtpp_socket_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.c
479480
rtpp_refproxy_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.c
480481
rtpp_command_reply_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.c
482+
rtpp_genuid_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.c
481483
UCL_DIR = $(top_srcdir)/external/libucl
482484
UCL_SDIR = $(UCL_DIR)/src
483485
noinst_LTLIBRARIES = libucl.la libucl_debug.la

makeann/Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,8 @@ SRCS_AUTOGEN_DEBUG = $(rtpp_netaddr_AUTOSRCS) \
407407
$(rtpp_ringbuf_AUTOSRCS) $(rtpp_sessinfo_AUTOSRCS) \
408408
$(rtpp_rw_lock_AUTOSRCS) $(rtpp_proc_servers_AUTOSRCS) \
409409
$(rtpp_proc_wakeup_AUTOSRCS) $(rtpp_socket_AUTOSRCS) \
410-
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS)
410+
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS) \
411+
$(rtpp_genuid_AUTOSRCS)
411412
rtpp_command_rcache_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.c
412413
rtpp_log_obj_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.c
413414
rtpp_port_table_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.c
@@ -437,6 +438,7 @@ rtpp_proc_wakeup_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_proc_wakeup_fin.h $(RTPP_AU
437438
rtpp_socket_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.c
438439
rtpp_refproxy_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.c
439440
rtpp_command_reply_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.c
441+
rtpp_genuid_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.c
440442
extractaudio_SRCDIR = $(top_srcdir)/extractaudio
441443
makeann_SOURCES = makeann.c rtp.h g711.h $(extractaudio_SRCDIR)/g729_compat.c \
442444
$(extractaudio_SRCDIR)/g729_compat.h

modules/acct_csv/Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ SRCS_AUTOGEN_DEBUG = $(rtpp_netaddr_AUTOSRCS) \
418418
$(rtpp_ringbuf_AUTOSRCS) $(rtpp_sessinfo_AUTOSRCS) \
419419
$(rtpp_rw_lock_AUTOSRCS) $(rtpp_proc_servers_AUTOSRCS) \
420420
$(rtpp_proc_wakeup_AUTOSRCS) $(rtpp_socket_AUTOSRCS) \
421-
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS)
421+
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS) \
422+
$(rtpp_genuid_AUTOSRCS)
422423
rtpp_command_rcache_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.c
423424
rtpp_log_obj_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.c
424425
rtpp_port_table_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.c
@@ -448,6 +449,7 @@ rtpp_proc_wakeup_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_proc_wakeup_fin.h $(RTPP_AU
448449
rtpp_socket_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.c
449450
rtpp_refproxy_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.c
450451
rtpp_command_reply_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.c
452+
rtpp_genuid_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.c
451453
LDFLAG_SYMEXPORT = -Wl,--version-script=$(top_srcdir)/modules/Symbol.map
452454
pkglib_LTLIBRARIES = rtpp_acct_csv.la rtpp_acct_csv_debug.la
453455
noinst_LTLIBRARIES = librtpp_acct_csv.la

modules/acct_rtcp_hep/Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,8 @@ SRCS_AUTOGEN_DEBUG = $(rtpp_netaddr_AUTOSRCS) \
489489
$(rtpp_ringbuf_AUTOSRCS) $(rtpp_sessinfo_AUTOSRCS) \
490490
$(rtpp_rw_lock_AUTOSRCS) $(rtpp_proc_servers_AUTOSRCS) \
491491
$(rtpp_proc_wakeup_AUTOSRCS) $(rtpp_socket_AUTOSRCS) \
492-
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS)
492+
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS) \
493+
$(rtpp_genuid_AUTOSRCS)
493494
rtpp_command_rcache_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.c
494495
rtpp_log_obj_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.c
495496
rtpp_port_table_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.c
@@ -519,6 +520,7 @@ rtpp_proc_wakeup_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_proc_wakeup_fin.h $(RTPP_AU
519520
rtpp_socket_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.c
520521
rtpp_refproxy_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.c
521522
rtpp_command_reply_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.c
523+
rtpp_genuid_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.c
522524
LDFLAG_SYMEXPORT = -Wl,--version-script=$(top_srcdir)/modules/Symbol.map
523525
HEPSRCDIR = $(top_srcdir)/external/hepconnector
524526
UCLSRCDIR = $(top_srcdir)/external/libucl

modules/badmod/Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,8 @@ SRCS_AUTOGEN_DEBUG = $(rtpp_netaddr_AUTOSRCS) \
466466
$(rtpp_ringbuf_AUTOSRCS) $(rtpp_sessinfo_AUTOSRCS) \
467467
$(rtpp_rw_lock_AUTOSRCS) $(rtpp_proc_servers_AUTOSRCS) \
468468
$(rtpp_proc_wakeup_AUTOSRCS) $(rtpp_socket_AUTOSRCS) \
469-
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS)
469+
$(rtpp_refproxy_AUTOSRCS) $(rtpp_command_reply_AUTOSRCS) \
470+
$(rtpp_genuid_AUTOSRCS)
470471
rtpp_command_rcache_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_rcache_fin.c
471472
rtpp_log_obj_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_log_obj_fin.c
472473
rtpp_port_table_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_port_table_fin.c
@@ -496,6 +497,7 @@ rtpp_proc_wakeup_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_proc_wakeup_fin.h $(RTPP_AU
496497
rtpp_socket_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_socket_fin.c
497498
rtpp_refproxy_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_refproxy_fin.c
498499
rtpp_command_reply_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_command_reply_fin.c
500+
rtpp_genuid_AUTOSRCS = $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.h $(RTPP_AUTOSRC_DIR)/rtpp_genuid_fin.c
499501
LDFLAG_SYMEXPORT = -Wl,--version-script=$(top_srcdir)/modules/Symbol.map
500502
pkglib_LTLIBRARIES = rtpp_badmod1.la rtpp_badmod1_debug.la \
501503
rtpp_badmod2.la rtpp_badmod2_debug.la \

0 commit comments

Comments
 (0)