aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2005-02-24Search for fop, not fop.shJörg Mayer1-3/+3
svn path=/trunk/; revision=13499
2005-02-20Correct fix for distcheck this time - definitelyJörg Mayer1-1/+0
svn path=/trunk/; revision=13445
2005-02-20Remove stats_tree again: It breaks distcheckJörg Mayer1-1/+0
svn path=/trunk/; revision=13441
2005-02-20Beginnings of autogenerating docbook/Makefile (long way to go) so call it ↵Jörg Mayer1-0/+23
Makefile.auto for now svn path=/trunk/; revision=13439
2005-02-20Create stats_tree Makefile to allow manual buildsJörg Mayer1-0/+1
svn path=/trunk/; revision=13438
2005-02-10From Oleg Terletsky: AgentX support.Guy Harris1-0/+1
svn path=/trunk/; revision=13372
2005-02-06Back out the previous change - we were setting "datafiledir", notGuy Harris1-0/+9
"datafile", and code in epan/filesystem.c expectes DATAFILE_DIR to be set to the "ethereal" subdirectory of the data directory, not to the data directory itself. svn path=/trunk/; revision=13322
2005-02-04Albert Chin:Jörg Mayer1-9/+0
>From autoconf.info: In order to support these features, it is essential that `datadir' remains being defined as `${prefix}/share' to depend upon the current value of `prefix'. A corollary is that you should not use these variables except in Makefiles. For instance, instead of trying to evaluate `datadir' in `configure' and hard-coding it in Makefiles using e.g., `AC_DEFINE_UNQUOTED(DATADIR, "$datadir")', you should add `-DDATADIR="$(datadir)"' to your `CPPFLAGS'. svn path=/trunk/; revision=13275
2005-01-15Add mate to the build process (plus a few whitespace changes)Jörg Mayer1-3/+4
svn path=/trunk/; revision=13051
2005-01-15Bump the version to 0.10.9.Gerald Combs1-1/+1
svn path=/trunk/; revision=13049
2004-12-07Updates for 0.10.8.Gerald Combs1-1/+1
svn path=/trunk/; revision=12683
2004-10-20renamed capinfo to capinfos, as the former name capinfo was already used in ↵Ulf Lamping1-11/+11
a program called tcprelay, so that might confuse packaging managers and users. Hopefully I got all the places need to be changed. svn path=/trunk/; revision=12358
2004-10-15Dectect MIT-Kerberos as wellJörg Mayer1-6/+6
svn path=/trunk/; revision=12302
2004-10-08Bump the version to 0.10.7.Gerald Combs1-1/+1
svn path=/trunk/; revision=12243
2004-09-26Fix a typo.Guy Harris1-1/+1
svn path=/trunk/; revision=12107
2004-09-26In the SNMP tests, we're using AC_TRY_LINK to avoid caching the resultsGuy Harris1-3/+0
of the test for sprint_realloc_objid() (so that a failure to find it when we're not linking with extra libraries doesn't cause us to assume we won't find it if we *do* link with extra libraries), so "ac_cv_lib_snmp_sprint_realloc_objid" doesn't get set - set our own variable for that. Use AC_TRY_LINK rather than AC_CHECK_LIB in the Kerberos tests when checking for krb_k5_resolve(), to avoid caching the results. Improve the messages printed in the Kerberos tests to give more detail. svn path=/trunk/; revision=12106
2004-09-26Clean up a bunch of cruft in --with-ssl; make it more resemble otherGuy Harris1-6/+35
--with flags. Report, in the messages at the end of the configure script, whether we're building with the SSL library. If we fail to find "sprint_realloc_objid()" when linking with a particular library, and --with-ssl wasn't specified, try linking with -lcrypto as well and, if that succeeds, fail with an indication that UCD SNMP requires -lcrypto but --with-ssl wasn't specified. svn path=/trunk/; revision=12105
2004-09-05Name the variables that have the names of ".lo" files as _LO, not _O;Guy Harris1-7/+25
put the name of the ".o" files into _O variables (I'm not sure whether the current .am files automatically support building programs statically linked with libethereal, as a result of using libtool; if so, the _O versions of those variables aren't necessary, and, if not, we probably need to use them). Use the _LO variables in libethereal_la_LIBADD and libethereal_la_DEPENDENCIES. (This means that we use "g_ascii_strtoull.lo" rather than "g_ascii_strtoull.o" to make the libethereal shared library; that's what we need to do, but we weren't doing it.) svn path=/trunk/; revision=11906
2004-09-03Some UN*Xes don't have any "strtou*" routine to convert a string to aGuy Harris1-18/+16
64-bit integer; use "g_ascii_strtoull()", and, in the configure script, check whether it's available in GLib (it's not in GLib 1.2[.x]) and, if not, supply the GLib 2.4.5 version of the routine. For G_MAXUINT32 and G_MAXUINT64, put a "U" at the end of the constant to explicitly flag it as unsigned. svn path=/trunk/; revision=11889
2004-08-22FreeBSD 3.4 doesn't have "strtoull()", but it does have "strtouq()",Guy Harris1-0/+18
which does the same thing - check for "strtoull()" and, if it's missing, check for "strtouq()" and, if we have it, define strtoull as strtouq. svn path=/trunk/; revision=11798
2004-08-06Bump the version to 0.10.6. Drop in a new ChangeLog, and add the beginningsGerald Combs1-1/+1
of the release announcement to NEWS. svn path=/trunk/; revision=11611
2004-07-28From Ian Schorr: capinfo - provides capture file information.Olivier Biot1-0/+17
svn path=/trunk/; revision=11555
2004-07-25Use the GLib gint64 and guint64 types instead of u_int64_t or uint64_t,Guy Harris1-64/+58
as those are what's used in Ethereal for 64-bit integers, and as there's no guarantee that either of them will be defined on any particular platform. svn path=/trunk/; revision=11513
2004-07-21Forgotten case: Make krb5 fail if it requires -lcrypto but no --with-ssl=... ↵Jörg Mayer1-1/+2
is not given svn path=/trunk/; revision=11458
2004-07-21From Laurent Rabret: OPSI support.Guy Harris1-0/+1
svn path=/trunk/; revision=11454
2004-07-20Make configure continue after disabling Net-SNMP when the openssl libsJörg Mayer1-6/+9
are reuired for SNMP to link but not enabled on configure. svn path=/trunk/; revision=11443
2004-07-18- Require --with-ssl=... to be explicitly set to workJörg Mayer1-0/+5
around licensing problems - Cause krb5 and snmp to fail, if ssl is required but not configured. svn path=/trunk/; revision=11416
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+1
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-07-06Prep for the 0.10.5 release.Gerald Combs1-2/+2
svn path=/trunk/; revision=11319
2004-06-25doxygen changes:Jörg Mayer1-1/+4
- moved doxygen.cfg to doxygen.cfg.in and let configure to the substitution on unix. Adapted the namke files accordingly. - Don't add doxygen as a dependency for libethereal and libui: As doxygen is an unconditional target, this would cause the applications to be rebuild every time make was called, even when nothing changed in the meantime. This means that by now we need to do "make doxygen" manually in case we want updated documentation. svn path=/trunk/; revision=11238
2004-06-23Build and install the HTMLized man pages on UN*X.Guy Harris1-1/+10
svn path=/trunk/; revision=11217
2004-06-22To test whether we can build with OS X frameworks, try building withGuy Harris1-6/+27
those frameworks. svn path=/trunk/; revision=11214
2004-06-22Handle cases where PRI[doxu]64 is defined, but u_int64_t isn't. (Solaris 8Gerald Combs1-5/+11
only defines uint64_t, for example). svn path=/trunk/; revision=11212
2004-06-22On Mac OS X, use Launch Services to start a Web browser with a given URL.Guy Harris1-1/+30
svn path=/trunk/; revision=11208
2004-06-19If the user hasn't explicitly said they want to build with Heimdal,Guy Harris1-5/+5
don't *require* them to have "krb5.h" - if they don't have it, don't build with Heimdal. svn path=/trunk/; revision=11184
2004-06-19Pick up the stuff I did for tcpdump to figure out the right strings toGuy Harris1-1/+59
use to format 64-bit integers. Fix the RSVP dissector to use that rather than hardcoding "%ll" in. Remove the "only if G_HAVE_GINT64 is defined" bit from the discussion of 64-bit integers - we're too dependent on having them to support compilers that don't have a 64-bit integral data type. Do, however, note that neither "long" nor "long long" are acceptable, and also note that you shouldn't assume "%ll" does the trick for printing them. svn path=/trunk/; revision=11182
2004-06-17Turn on kerberos by default if it is presentJörg Mayer1-3/+3
svn path=/trunk/; revision=11165
2004-06-09Add Automake/Autoconf Doxygen targets.Gerald Combs1-1/+6
svn path=/trunk/; revision=11128
2004-05-26Make gtk2 the default. Use --disable-gtk2 to use glib1/gtk1 insteadJörg Mayer1-2/+2
svn path=/trunk/; revision=11010
2004-05-23Enable building dftest by defaultJörg Mayer1-2/+2
svn path=/trunk/; revision=10977
2004-05-15From Thomas Anders: fix --with-net-snmp to let it handle either theGuy Harris1-3/+6
pathname of the Net-SNMP directory or the pathname of the Net-SNMP configure script as an argument to that option. svn path=/trunk/; revision=10907
2004-05-13Paul Smith: bugfix: make loadable module support work when cross compilingJörg Mayer1-2/+3
svn path=/trunk/; revision=10882
2004-05-13Thomas Anders: fix usage of brk5_dirJörg Mayer1-3/+3
svn path=/trunk/; revision=10879
2004-05-13Bump the version up to 0.10.4. Preliminary updates to the NEWS file. UpdatesGerald Combs1-2/+2
welcome. svn path=/trunk/; revision=10863
2004-05-09From Lars Roland: add support for building a libethereal.dll with MSVC:Guy Harris1-1/+7
add a config.nmake option to control whether to build libethereal.dll or not; remove "./wiretap" from PATH to prevent problems due to wrongly-loaded files; build dissector.lib with MSVC; move "print.c" and "ps.c" to the dissector helpers, as "print.c" imports variables from packet-frame.c and packet-data.c, which are in libethereal; move "g711.c" out of the dissector helpers, as they're used only by Ethereal in a tap, not in Tethereal or in any dissector; add a .def file for libethereal; arrange to declare global variables exported from libethereal with "__declspec(dllimport)" when building programs that import those variables; update the NSIS installer. Make the "configure" script define ETH_VAR_IMPORT as "extern". svn path=/trunk/; revision=10834
2004-04-25Replace the plugin linkage libs into PLUGIN_LIBS which is generated from theOlivier Biot1-1/+7
top-level configure.in when running configure. svn path=/trunk/; revision=10699
2004-04-22More correct implementation of the --disable-usr-local option.Olivier Biot1-3/+3
svn path=/trunk/; revision=10661
2004-04-14At last compiling on CygWin works again! Added the missing PCRE and GLIBOlivier Biot1-1/+12
libraries to libftypes. Provide caching of computed configure tests. svn path=/trunk/; revision=10600
2004-03-27OK, I'm impatient. In case of problems, I'm to blame, not Olivier.Jörg Mayer1-9/+93
Olivier Biot: Merge epan/configure.in back into configure.in Leave epan/confiugre.in and epan/acinclude.m4 in case we need to undo this. svn path=/trunk/; revision=10505