Changeset da17570
- Timestamp:
- 08/30/05 13:41:24 (16 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 464266d
- Parents:
- 53f8305
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r1974620 rda17570 36 36 * format conversion only applies if input not already in the right 37 37 format 38 * move internal fifo* symbols to tracefifo* to prevent collision 39 with libfifo 38 40 39 41 - Version 2.0.19 -
Makefile.am
r03a437a rda17570 1 1 SUBDIRS=lib 2 man_MANS = docs/man/man3/[a-zA-Z]*.3 2 man_MANS = docs/man/man3/trace*.3 docs/man/man3/libtrace*.3 docs/man/man3/get*.3 3 #man_MANS = @MANPAGES@ 3 4 EXTRA_DIST=examples docs/html docs/latex docs/man $(man_MANS) 4 5 … … 16 17 rm -rf `find $(distdir)/examples -name CVS` 17 18 18 docs/man/man3/ [a-zA-Z]*.3:19 docs/man/man3/*.3: 19 20 doxygen libtrace.doxygen 20 21 -
configure.in
ra8ba977 rda17570 2 2 AC_INIT(libtrace,2.0.20,[libtrace@wand.net.nz],libtrace) 3 3 AC_CONFIG_SRCDIR(lib/trace.c) 4 AM_INIT_AUTOMAKE (libtrace,2.0.20)4 AM_INIT_AUTOMAKE 5 5 6 6 AC_CONFIG_FILES([Makefile lib/Makefile]) … … 112 112 AC_CHECK_FUNCS(socket strdup) 113 113 114 # configure time options for man pages 115 AC_ARG_WITH(man, 116 AC_HELP_STRING([--with-man], 117 [install man pages by default]), 118 119 if test "$withval" = yes 120 then 121 MANPAGES="docs/man/man3/[a-zA-Z]*.3]" 122 else 123 MANPAGES="" 124 fi 125 ) 114 126 115 127 # configure time options for use of DAG cards … … 284 296 AC_SUBST([ADD_INCLS]) 285 297 AC_SUBST([LTLIBOBJS]) 298 AC_SUBST([MANPAGES]) 286 299 287 300 dnl and finally, output our Makefiles -
lib/libtrace_int.h
rb5cd711 rda17570 90 90 } packet; 91 91 double tdelta; 92 // double trace_start_ts;93 // double real_start_ts;94 92 double trace_last_ts; 95 96 // double last_ts;97 // double start_ts;98 93 }; 99 94 -
libtrace.doxygen
rb5236ad rda17570 64 64 # If set to NO only classes defined in header files are included. 65 65 66 EXTRACT_LOCAL_CLASSES = YES66 EXTRACT_LOCAL_CLASSES = NO 67 67 68 68 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all … … 72 72 # This option has no effect if EXTRACT_ALL is enabled. 73 73 74 HIDE_UNDOC_MEMBERS = YES74 HIDE_UNDOC_MEMBERS = NO 75 75 76 76 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
Note: See TracChangeset
for help on using the changeset viewer.