Changeset 80a6589
- Timestamp:
- 10/10/05 16:25:16 (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:
- 47a9686
- Parents:
- 9daf398
- Files:
-
- 1 added
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r1e66c64 r80a6589 31 31 - Version 2.0.22 32 32 * Documentation updates 33 * Minor bugfixes 33 * Added pcap_dump_flush() replacement function 34 * Better doxygen detection 34 35 35 36 - Version 2.0.21 -
Makefile.am
rda17570 r80a6589 1 SUBDIRS=lib 2 man_MANS = docs/man/man3/trace*.3 docs/man/man3/libtrace*.3 docs/man/man3/get*.3 1 SUBDIRS=lib docs 2 3 AUTOMAKE_OPTIONS = 1.5 4 5 6 #man_MANS = docs/man/man3/trace*.3 docs/man/man3/libtrace*.3 docs/man/man3/get*.3 3 7 #man_MANS = @MANPAGES@ 4 EXTRA_DIST=examples docs/html docs/latex docs/man $(man_MANS) 8 EXTRA_DIST=examples 9 #docs/html docs/latex docs/man $(man_MANS) 5 10 6 11 .PHONY: docs … … 17 22 rm -rf `find $(distdir)/examples -name CVS` 18 23 19 docs/man/man3/*.3:20 doxygen libtrace.doxygen24 #docs/man/man3/*.3: 25 # doxygen libtrace.doxygen 21 26 22 docs:23 doxygen libtrace.doxygen27 #docs: 28 # doxygen libtrace.doxygen 24 29 25 30 install-man-hook: docs -
configure.in
r9daf398 r80a6589 4 4 AM_INIT_AUTOMAKE 5 5 6 AC_CONFIG_FILES([Makefile lib/Makefile ])6 AC_CONFIG_FILES([Makefile lib/Makefile docs/Makefile]) 7 7 dnl GNU C library 8 8 dnl AC_GNU_SOURCE … … 145 145 then 146 146 want_dag=yes 147 dag_root= 147 dag_root=/root/dag 148 148 else 149 149 want_dag=yes … … 155 155 # 156 156 want_dag=ifpresent 157 dag_root= 157 dag_root=/root/dag/ 158 158 ]) 159 159 … … 162 162 if test "$with_dag" != no; then 163 163 AC_MSG_CHECKING(whether we have DAG API) 164 165 if test -z "$dag_root"; then166 dag_root=$srcdir/../dag167 fi168 164 169 165 if test -r "$dag_root/lib"; then … … 194 190 dag2_4=true 195 191 fi 192 193 AC_DEFINE(HAVE_DAG_API, 1, [define if you have a DAG API]) 194 AC_DEFINE(HAVE_DAG,1,[conditional for building with DAG support]) 196 195 else 197 ac_cv_lbl_dag_api=no198 fi199 AC_MSG_RESULT($ac_cv_lbl_dag_api)200 if test $ac_cv_lbl_dag_api = no; then201 196 if test "$want_dag" = yes; then 202 197 AC_MSG_ERROR(DAG API not found under directory $dag_root 203 198 ; use --without-dag) 204 199 fi 205 else 206 AC_DEFINE(HAVE_DAG_API, 1, [define if you have a DAG API]) 207 AC_DEFINE(HAVE_DAG,1,[conditional for building with DAG support]) 200 ac_cv_lbl_dag_api=no 208 201 fi 202 AC_MSG_RESULT($ac_cv_lbl_dag_api) 209 203 else 210 204 AC_DEFINE(HAVE_DAG,0,[conditional for building with DAG support]) … … 213 207 AM_CONDITIONAL(HAVE_DAG, test x$ac_cv_lbl_dag_api = xyes) 214 208 AM_CONDITIONAL(DAG2_4, test x$dag2_4 = xtrue) 209 210 211 # Check for miscellaneous programs 212 AC_CHECK_PROG([has_doxygen], [doxygen], [true], [false]) 213 214 AM_CONDITIONAL(HAS_DOXYGEN, [test x"$has_doxygen" = xtrue]) 215 216 215 217 216 218 # The following is commented out because it seems you don't actually -
docs/libtrace.doxygen
rda17570 r80a6589 31 31 # where doxygen was started. If left blank the current directory will be used. 32 32 33 OUTPUT_DIRECTORY = do cs33 OUTPUT_DIRECTORY = doxygen 34 34 35 35 # The OUTPUT_LANGUAGE tag is used to specify the language in which all … … 309 309 # with spaces. 310 310 311 INPUT = lib311 INPUT = ../lib 312 312 313 313 # If the value of the INPUT tag contains directories, you can use the -
lib/Makefile.am
r9daf398 r80a6589 3 3 4 4 if DAG2_4 5 libtrace_la_SOURCES = trace.c fifo.c fifo.h common.h format_template.c format_erf.c format_pcap.c format_wag.c format_helper.c format_helper.h parse_cmd.c parse_cmd.h libtrace_int.h dagopts.c dagapi.c5 libtrace_la_SOURCES = trace.c fifo.c fifo.h common.h format_template.c format_erf.c format_pcap.c format_wag.c format_helper.c format_helper.h parse_cmd.c parse_cmd.h libtrace_int.h 6 6 nodist_libtrace_la_SOURCES = dagopts.c dagapi.c 7 7 else
Note: See TracChangeset
for help on using the changeset viewer.