mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-03 23:47:16 +00:00 
			
		
		
		
	The files converted in this commit either had some random misspelling or formatting weirdness that made them escape automated replacement, or have a particularly "weird" licensing setup (e.g. dual-licensed.) This also marks a bunch of "public domain" files as SPDX License "NONE". Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
/* @configure_input@
 | 
						|
 *
 | 
						|
 * Quagga version
 | 
						|
 * Copyright (C) 1997, 1999 Kunihiro Ishiguro
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _ZEBRA_VERSION_H
 | 
						|
#define _ZEBRA_VERSION_H
 | 
						|
 | 
						|
#ifdef GIT_VERSION
 | 
						|
#include "lib/gitversion.h"
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef GIT_SUFFIX
 | 
						|
#define GIT_SUFFIX ""
 | 
						|
#endif
 | 
						|
#ifndef GIT_INFO
 | 
						|
#define GIT_INFO ""
 | 
						|
#endif
 | 
						|
 | 
						|
#define FRR_PAM_NAME    "@PACKAGE_NAME@"
 | 
						|
#define FRR_SMUX_NAME   "@PACKAGE_NAME@"
 | 
						|
#define FRR_PTM_NAME    "@PACKAGE_NAME@"
 | 
						|
 | 
						|
#define FRR_FULL_NAME   "FRRouting"
 | 
						|
#define FRR_VERSION     "@PACKAGE_VERSION@" GIT_SUFFIX
 | 
						|
#define FRR_VER_SHORT   "@PACKAGE_VERSION@"
 | 
						|
#define FRR_BUG_ADDRESS "@PACKAGE_BUGREPORT@"
 | 
						|
#define FRR_COPYRIGHT   "Copyright 1996-2005 Kunihiro Ishiguro, et al."
 | 
						|
#define FRR_CONFIG_ARGS "@CONFIG_ARGS@"
 | 
						|
 | 
						|
#define FRR_DEFAULT_MOTD \
 | 
						|
	"\n" \
 | 
						|
	"Hello, this is " FRR_FULL_NAME " (version " FRR_VERSION ").\n" \
 | 
						|
	FRR_COPYRIGHT "\n" \
 | 
						|
	GIT_INFO "\n"
 | 
						|
 | 
						|
pid_t pid_output (const char *);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* _ZEBRA_VERSION_H */
 |