mirror of
				https://github.com/osmarks/ngircd.git
				synced 2025-10-31 05:52:59 +00:00 
			
		
		
		
	- auf die "libbe" wird nur noch getestet, wenn syslog ueberhaupt verwendet wird.
This commit is contained in:
		
							
								
								
									
										20
									
								
								configure.in
									
									
									
									
									
								
							
							
						
						
									
										20
									
								
								configure.in
									
									
									
									
									
								
							| @@ -9,9 +9,12 @@ | ||||
| # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste | ||||
| # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. | ||||
| # | ||||
| # $Id: configure.in,v 1.28 2002/02/17 22:17:33 alex Exp $ | ||||
| # $Id: configure.in,v 1.29 2002/02/19 02:11:26 alex Exp $ | ||||
| # | ||||
| # $Log: configure.in,v $ | ||||
| # Revision 1.29  2002/02/19 02:11:26  alex | ||||
| # - auf die "libbe" wird nur noch getestet, wenn syslog ueberhaupt verwendet wird. | ||||
| # | ||||
| # Revision 1.28  2002/02/17 22:17:33  alex | ||||
| # - Versionsnummer im CVS auf 0.2.2-pre angehoben ... | ||||
| # | ||||
| @@ -186,19 +189,26 @@ AC_CHECK_FUNCS(inet_aton) | ||||
|  | ||||
| # -- Libraries -- | ||||
|  | ||||
| AC_CHECK_LIB(be,syslog) | ||||
|  | ||||
| # -- Konfigurationsoptionen -- | ||||
|  | ||||
| AC_ARG_ENABLE(syslog, | ||||
| 	[  --disable-syslog        disable syslog (autodetected by default)], | ||||
| 	[	if test "$enableval" = "yes"; then | ||||
| 			AC_CHECK_HEADER(syslog.h,AC_DEFINE(USE_SYSLOG, 1),AC_MSG_ERROR([Can't enable syslog: syslog.h not found!])) | ||||
| 			AC_CHECK_HEADER(syslog.h, | ||||
| 				[	AC_DEFINE(USE_SYSLOG, 1) | ||||
| 					AC_CHECK_LIB(be,syslog) | ||||
| 				], | ||||
| 				AC_MSG_ERROR([Can't enable syslog: syslog.h not found!]) | ||||
| 			) | ||||
| 		else | ||||
| 			AC_MSG_RESULT([disabling syslog]) | ||||
| 		fi | ||||
| 	], | ||||
| 	[	AC_CHECK_HEADER(syslog.h,AC_DEFINE(USE_SYSLOG, 1)) | ||||
| 	[	AC_CHECK_HEADER(syslog.h, | ||||
| 			[	AC_DEFINE(USE_SYSLOG, 1) | ||||
| 				AC_CHECK_LIB(be,syslog) | ||||
| 			] | ||||
| 		) | ||||
| 	] | ||||
| ) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Alexander Barton
					Alexander Barton