summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
| * * configure.ac: Use AC_RUN_IFELSE instead of obsolete AC_TRY_RUN macrohasso2005-04-031-3/+3
| | | | | | | | | | | | and define action for cross-compiling. [backport candidate]
| * * configure.ac: Add --enable-isis-topology to enable isisd topologyhasso2005-04-021-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | generator code. * isisd/Makefile.am: Variables to handle conditonal compiling of topology generator code. * isisd/isis_lsp.c: lsppdu_realloc() is used by topology generator. * isisd/isisd.c: Rename show_isis_topology_cmd to not conflict the one in the isis_spf.c. * isisd/isisd.h: Remove TOPOLOGY_GENERATE define, it will be defined in toplevel config.h if topology generator is enabled. * isisd/topology/Makefile.am: Handle the libtoolized Quagga libraries.
| * 2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>ajs2005-04-021-2/+2
| | | | | | | | | | | | | | | | * configure.ac: Add strnlen to AC_CHECK_FUNCS. * zebra.h: Should include str.h to pick up missing functions. * str.h: Declare strnlen if needed. * str.c: Do not include str.h since zebra.h now includes it. (strnlen) New function.
| * * configure.ac, */Makefile.am: Fix previous commit. SNMP includeshasso2005-03-281-6/+8
| | | | | | | | | | must be after lib/ includes in some systems. Introduce SNMP_INCLUDES for that.
| * * configure.ac: Fix most of "Presents But Cannot Compiled" warningshasso2005-03-271-5/+6
| | | | | | | | | | about various headers. CFLAGS is not correct place to specify includes, INCLUDES is for that.
| * * configure.ac: Add Intel compiler (icc) support. Although Intelhasso2005-03-271-6/+35
| | | | | | | | | | | | | | tries really hard to make icc look like gcc, there are some differences. It's very verbose with -Wall and it doesn't support the individual -W options. We are going to ignore some of these warnings.
| * 2005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>vincent2005-03-251-1/+31
| | | | | | | | * Extensions to Neighbor Discovery for Mobile IPv6
| * 2005-03-12 Paul Jakma <paul.jakma@sun.com>paul2005-03-121-8/+8
| | | | | | | | | | * configure.ac: Solaris 8 can use the newer lifreq based methods too, allows IPv6.
| * * configure.ac: Fix Linux detection. Host types like i686-pc-linuxhasso2005-02-191-2/+2
| | | | | | | | | | | | didn't match the pattern. Fixes bugzilla #150. [backport candidate]
| * 2005-01-24 Paul Jakma <paul@dishone.st>paul2005-01-241-2/+2
| | | | | | | | | | * configure.ac: Bump version to 0.99.0 * doc/quagga.info: Version bump (autogenerated)
| * 2005-01-12 Andrew J. Schorr <ajschorr@alumni.princeton.edu>ajs2005-01-121-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.ac: Test for header file <ucontext.h> (for use in signal processing). * sigevent.c: (trap_default_signals) Use the SA_SIGINFO flag to pass additional siginfo_t and ucontext_t arguments to core_handler and exit_handler. (core_handler,exit_handler) Now invoked with 3 arguments (using SA_SIGINFO). Pass additional info to zlog_signal. (program_counter) New function to find program counter in ucontext_t, needs to be enhanced to support more platforms (currently works only on Linux/x86). * log.h: Change the zlog_signal prototype to add new arguments siginfo_t * and program_counter. * log.c: (zlog_signal) Add new arguments siginfo and program_counter. Include si_addr and program counter (if non-NULL) in message. And remove #ifdef HAVE_GLIBC_BACKTRACE around hex_append, since that is now used to render the si_addr and PC pointers.
| * 2005-01-12 Andrew J. Schorr <ajschorr@alumni.princeton.edu>ajs2005-01-121-1/+5
| | | | | | | | | | | | * configure.ac: If configure is invoked with --enable-snmp, but the configure script is unable to find SNMP support on the platform, then configure should give an error message and exit.
| * 2005-01-07 Paul Jakma <paul@dishone.st>quagga_0_98_0_releasepaul2005-01-071-2/+2
| | | | | | | | | | * configure.ac: Bump version to 0.98.0 * doc/quagga.info: Version bump (autogenerated)
| * 2005-01-05 Paul Jakma <paul@dishone.st>quagga_0_97_5_releasepaul2005-01-051-2/+2
| | | | | | | | | | * configure.ac: Bump version to 0.97.5 * doc/quagga.info: autogenerated, version bump.
| * minor fix to HAVE_BROKEN_CMSG_FIRSTHDR support: use AC_MSG_CHECKINGgdt2005-01-041-2/+4
| | | | | | | | | | | | | | etc. so configure output shows the choice we made. (Andrew: please recheck on a buggy system; it configures/compiles fine on NetBSD.)
| * 2005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>ajs2005-01-041-1/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.ac: Added test for broken CMSG_FIRSTHDR macro (relevant for Solaris 8 and unpatched Solaris 9, don't know whether other platforms are affected). * zebra.h: Define ZCMSG_FIRSTHDR appropriately based on whether config.h indicates HAVE_BROKEN_CMSG_FIRSTHDR (as determined by the configure test program). * sockopt.c: (getsockopt_cmsg_data) Use ZCMSG_FIRSTHDR instead of CMSG_FIRSTHDR. * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR instead of CMSG_FIRSTHDR. * ripd.c: (rip_recvmsg) Use ZCMSG_FIRSTHDR instead of CMSG_FIRSTHDR. * ripngd.c: (ripng_recv_packet) Use ZCMSG_FIRSTHDR instead of CMSG_FIRSTHDR.
| * 2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>ajs2004-12-291-1/+7
| | | | | | | | | | * configure.ac: Add new option --enable-gcc-rdynamic to link with -rdynamic.
| * 2004-12-23 Paul Jakma <paul@dishone.st>quagga_0_97_4_releasepaul2004-12-231-2/+2
| | | | | | | | | | configure.ac: Bump version to 0.97.4 doc/quagga.info: ditto (autogenerated file)
| * 2004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>ajs2004-12-221-1/+2
| | | | | | | | * configure.ac: Add a define for DAEMON_VTY_DIR in config.h.
| * 2004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>ajs2004-12-221-2/+12
| | | | | | | | * {configure.ac,Makefile.am}: Build watchquagga by default.
| * Make quagga.info in cvs actually useful for those who haven't latesthasso2004-11-191-1/+4
| | | | | | | | | | | | makeinfo: * Don't attempt to generate it after every ./configure. * Don't remove it while cleaning up.
| * - urg, fix the missing close bracket from previous commitpaul2004-11-121-2/+2
| |
| * 2004-11-12 Paul Jakma <paul@dishone.st>paul2004-11-121-3/+3
| | | | | | | | | | | | * configure.ac: Fix AC_CONFIG_FILES, the chmod seems to run for every input file, should be only be for vtysh/extract.pl, so that should be a seperate AC_CONFIG_FILES.
| * 2004-11-08 Paul Jakma <paul@dishone.st>quagga_0_97_3_releasepaul2004-11-081-2/+2
| | | | | | | | * configure.ac: bump version to 0.97.3, release imminent.
| * 2004-11-06 Paul Jakma <paul@dishone.st>paul2004-11-071-9/+7
| | | | | | | | | | | | | | | | | | | | | | | | * configure.ac: Arguments to AC_OUTPUT is deprecated, use AC_CONFIG_FILES instead. Rearrange the order slightly to put the Makefiles first (silly aesthetic thing, dont know why I had to do this ;) ). Add doc/defines.texi to the list. * NEWS: bgp route-server support added, refer to docs. * update-autotools: call automake with --add-missing and --copy, former is important for obvious reasons, latter for dist files, and --gnu to enable whatever extra goodness checks. * {depcomp, install-sh, missing}: removed, auto-generated files.
| * 2004-10-23 Paul Jakma <paul@dishone.st>paul2004-10-221-2/+2
| | | | | | | | * configure.ac: bump version to 0.97.2, release imminent.
| * 2004-10-22 Paul Jakma <paul@dishone.st>paul2004-10-221-4/+13
| | | | | | | | | | | | | | * configure.ac: fix up enable help alignment slightly Add --enable-gcc-ultra-verbose to set various gcc warnings which should one day be fixed but are not serious problems or which could be false-positives.
| * 2004-10-11 Paul Jakma <paul@dishone.st>quagga_0_97_1_releasepaul2004-10-111-2/+2
| | | | | | | | * bump version to 0.97.1, release imminent.
| * 2004-10-07 Paul Jakma <paul@dishone.st>paul2004-10-071-2/+2
| | | | | | | | * bump version to 0.97.0, release imminent.
| * 2004-10-07 Greg Troxel <gdt@sunpal7.mit.edu>gdt2004-10-071-2/+3
| | | | | | | | * configure.ac: remove -Wpacked; 2.95.3 doesn't support it.
| * Even my time is limited :).hasso2004-10-051-4/+3
| |
| * 2004-09-30 Paul Jakma <paul@dishone.st>paul2004-09-301-4/+10
| | | | | | | | * Update default CFLAGS for gcc to keep Hasso busy.
| * Disable isisd compiling by default. It compiles only in Linux and FreeBSDhasso2004-09-131-3/+3
| | | | | | | | and works only in Linux ;(.
| * 2004-09-13 Paul Jakma <paul@dishone.st>paul2004-09-131-2/+2
| | | | | | | | | | | | * configure.ac: capitalise the package name. autoconf lowercases it for PACKAGE_TARNAME. * lib/command.c: Update the copyright string in the default motd.
| * 2004-08-31 Greg Troxel <gdt@poblano.ir.bbn.com>gdt2004-08-311-1/+2
| | | | | | | | | | | | | | * Makefile.am (EXTRA_DIST): New - just has EXTRA_DIST. (Using a directory in EXTRA_DIST in the parent was causing 'make dist' to fail.) (Now m4/Makefile* is first-class and included from top level.)
| * 2004-08-31 Greg Troxel <gdt@poblano.ir.bbn.com>gdt2004-08-311-1/+14
| | | | | | | | | | * Rename scripts to *.sh.in, and use autoconf-style substitution for prefix and localstatedir.
| * Add start/stop scripts for the rc.d framework used bygdt2004-08-271-1/+2
| | | | | | | | pkgsrc (NetBSD and others). Contributed by Miles Nordin.
| * It hurts my eye every time configure finishes job :).hasso2004-08-261-4/+4
| |
| * 2004-08-19 Paul Jakma <paul@dishone.st>paul2004-08-191-2/+2
| | | | | | | | | | | | | | * Makefile.am: add m4 directory to EXTRA_DIST, and define ACLOCAL_AMFLAGS to have aclocal pull in m4/ * configure.ac: AM_PROG_LIBTOOL should be AC_PROG_LIBTOOL * update-autotools: print a warning that this script is deprecated
| * 2004-07-26 Paul Jakma <paul@dishone.st>paul2004-07-261-2/+2
| | | | | | | | | | | | * configure.ac: reenable tests/Makefile * tests/Makefile.am: automake file for tests dir * tests/.cvsignore: update
| * (somewhat unrelated cleanups, but all are very minor)gdt2004-07-231-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2004-07-23 Greg Troxel <gdt@poblano.ir.bbn.com> * */Makefile.am: Use ../dir/libfoo.la, rather than "-L../dir -lfoo", to avoid linking against installed libraries from a previous version. * {lib,ospfd,ospfclient}/Makefile.am: explicitly define the shared library version number to be 0.0 * configure.ac: remove spurious , so extract.pl is chmod'd +x. * HACKING: explain shared library versioning rules
| * 2004-07-22 Paul Jakma <paul@dishone.st>paul2004-07-221-2/+6
| | | | | | | | | | * configure.ac: modify default CFLAGS to be compiler agnostic build Makefile for tests/ subdir.
| * Add libtool support.libtool-aftergdt2004-06-301-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libzebra and libospfapiclient are now built shared, and linked shared with the daemons. This reduces the memory needed when running multiple daemons; each daemon is at least 150k smaller. Static libraries are still built, and libtool should use them on platforms which don't have shared libaries. As with autoconf, the user of a distribution does not need libtool; one just needs that to build from CVS. libospf.a is still a non-shared library, and still installed, not because that makese sense, but because I don't understand why it is the way it is now. Note that the tree was tagged 'libtool-before' just before this commit.
| * Make vtysh work on NetBSD, and minor cleanups:gdt2004-06-301-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | if --enable-vtysh, look for perl, and substitute into vtysh/extract.pl, rather than assuming perl is in /usr/bin Look for tputs in libtermcap and libcurses, in addition to previously-searched locations. Follow GNU readlines search order. Clean up --enable-vtysh definition in configure.ac. Add vtysh/vtysh_cmds.c to CLEANFILES. This is important if extract.pl fails, so that 'make clean && make' will regenerate vtysh_cmds.c rhather than using the old zero-length file.
| * Remove ifdef's HAVE_NSSA. NSSA support is stable enough.hasso2004-06-201-8/+1
| |
| * OK, here it is - irdp support. But don't expect me to fix any bugs in it.hasso2004-06-121-1/+7
| |
| * 2004-05-11 Paul Jakma <paul@dishone.st>paul2004-05-111-29/+55
| | | | | | | | | | | | | | * configure.ac: Add solaris support for the zebra/*_solaris method's, based on Sowmini's patches. * zebra/Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
| * 2004-05-03 Paul Jakma <paul@dishone.st>paul2004-05-031-2/+2
| | | | | | | | * bump version to 0.96.5
| * add $Id:$ line, commented outgdt2004-04-071-1/+2
| | | | | | | | | | require automake 1.6, in case that helps quagga.net (paul: please try it)
| * * Fixed lowering privileges in proc ipforward method.hasso2004-04-061-15/+19
| | | | | | | | | | * Fixed "(no) ipv6 forwarding" command logic. * Added --disable-capabilities switch to configure.