Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
update autoconf scripts
  • Loading branch information
Fabian Mauchle committed May 11, 2021
1 parent 2d06bda commit fdb0b70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion acinclude.m4
Expand Up @@ -5,7 +5,7 @@ AC_DEFUN([AX_CHECK_SSL],
SSL_DIR=
found_ssl="no"
AC_ARG_WITH(ssl,
AC_HELP_STRING([--with-ssl],
AS_HELP_STRING([--with-ssl],
[Use SSL (in specified installation directory)]),
[check_ssl_dir="$withval"],
[check_ssl_dir=])
Expand Down
7 changes: 4 additions & 3 deletions configure.ac
Expand Up @@ -2,7 +2,7 @@ dnl Copyright (c) 2006-2010, UNINETT AS
dnl Copyright (c) 2010-2013,2016, NORDUnet A/S
dnl See LICENSE for licensing information.

AC_INIT(radsecproxy, 1.8.2, https://radsecproxy.github.io)
AC_INIT([radsecproxy],[1.8.2],[https://radsecproxy.github.io])
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
Expand Down Expand Up @@ -59,7 +59,7 @@ AC_CHECK_LIB([nettle], [nettle_sha256_init],,
[AC_MSG_ERROR([required library nettle not found])])

dnl Check if we're on Solaris and set CFLAGS accordingly
AC_CANONICAL_SYSTEM
AC_CANONICAL_TARGET
case "${target_os}" in
solaris*)
TARGET_CFLAGS="-DSYS_SOLARIS9 -D_POSIX_PTHREAD_SEMANTICS"
Expand Down Expand Up @@ -105,7 +105,8 @@ AC_SUBST(SYSCONFDIR)
AC_SUBST(TARGET_CFLAGS)
AC_SUBST(TARGET_LDFLAGS)
AX_CHECK_SSL
AC_OUTPUT([
AC_CONFIG_FILES([
Makefile
tests/Makefile
])
AC_OUTPUT

0 comments on commit fdb0b70

Please sign in to comment.