mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-10-31 16:56:31 +00:00 
			
		
		
		
	 14c17fd825
			
		
	
	
		14c17fd825
		
	
	
	
	
		
			
			* 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.
		
	
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			587 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			587 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/sh
 | |
| #
 | |
| # When local system does not have the latest autoconf/automake
 | |
| #        -- Kunihiro Ishiguro <kunihiro@zebra.org>
 | |
| #
 | |
| 
 | |
| rm -f config.cache Makefile.in aclocal.m4 config.h.in configure
 | |
| rm -rf autom4te.cache
 | |
| 
 | |
| echo "This $0 script is deprecated, and will be removed at some stage."
 | |
| echo "Please use the 'autoreconf' command included with autoconf."
 | |
| 
 | |
| echo "TOOLS VERIONS:"
 | |
| for tool in autoheader autoconf libtool libtoolize aclocal automake; do
 | |
|   $tool --version | head -1
 | |
| done
 | |
| 
 | |
| echo "UPDATING:"
 | |
| aclocal -I m4
 | |
| autoheader
 | |
| autoconf
 | |
| libtoolize -c
 | |
| automake --gnu --add-missing --copy
 | |
| 
 |