X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=configure.ng;h=367c2f0cc59a9c386d11c2fab3f5239a30aba22f;hp=1e141c9f7f82e8a366c93979651f8b0b0f5eeb43;hb=b1893e740e745cc5081ef59719bb10bc5f729fdb;hpb=599cfd09441816bfe90395a4ec1dff630bc6ce0c diff --git a/configure.ng b/configure.ng index 1e141c9f..367c2f0c 100644 --- a/configure.ng +++ b/configure.ng @@ -154,15 +154,30 @@ AC_HEADER_TIME # Required header files AC_CHECK_HEADERS([ \ - fcntl.h netdb.h netinet/in.h stdlib.h string.h \ - strings.h sys/socket.h sys/time.h unistd.h \ + fcntl.h \ + netdb.h \ + netinet/in.h \ + stdlib.h \ + string.h \ + strings.h \ + sys/socket.h \ + sys/time.h \ + sys/types.h \ + unistd.h \ ],,AC_MSG_ERROR([required C header missing!])) # Optional header files AC_CHECK_HEADERS_ONCE([ \ - arpa/inet.h inttypes.h malloc.h netinet/in_systm.h netinet/ip.h \ - stdbool.h stddef.h stdint.h varargs.h \ - ]) + arpa/inet.h \ + inttypes.h \ + malloc.h \ + netinet/in_systm.h \ + netinet/ip.h \ + stdbool.h \ + stddef.h \ + stdint.h \ + varargs.h \ +]) # -- Datatypes -- @@ -212,17 +227,49 @@ AC_FUNC_STRFTIME # Required functions AC_CHECK_FUNCS([ \ - alarm dup2 endpwent gethostbyaddr gethostbyname gethostname \ - gettimeofday inet_ntoa memmove memset setsid socket strcasecmp \ - strchr strcspn strerror strncasecmp strrchr strspn strstr \ + alarm \ + dup2 \ + endpwent \ + gethostbyaddr \ + gethostbyname \ + gethostname \ + gettimeofday \ + inet_ntoa \ + memmove \ + memset \ + setsid \ + socket \ + strcasecmp \ + strchr \ + strcspn \ + strerror \ + strncasecmp \ + strrchr \ + strspn \ + strstr \ ],, AC_MSG_ERROR([required function missing!])) # Optional functions AC_CHECK_FUNCS_ONCE([ - arc4random arc4random_stir gai_strerror getnameinfo inet_aton \ - sigaction sigprocmask snprintf vsnprintf strdup strndup strlcpy strlcat \ - strtok_r unsetenv waitpid]) + arc4random \ + arc4random_stir \ + gai_strerror \ + getnameinfo \ + inet_aton \ + setgroups \ + sigaction \ + sigprocmask \ + snprintf \ + strdup \ + strlcat \ + strlcpy \ + strndup \ + strtok_r \ + unsetenv \ + vsnprintf \ + waitpid \ +]) WORKING_GETADDRINFO @@ -417,9 +464,13 @@ AC_ARG_WITH(openssl, CPPFLAGS="-I$withval/include $CPPFLAGS" LDFLAGS="-L$withval/lib $LDFLAGS" fi - AC_CHECK_LIB(crypto, BIO_s_mem) - AC_CHECK_LIB(ssl, SSL_library_init) - AC_CHECK_FUNCS(SSL_library_init, x_ssl_openssl=yes, + PKG_CHECK_MODULES([OPENSSL], [libssl libcrypto], + [LIBS="$LIBS $OPENSSL_LIBS" CFLAGS="$CFLAGS $OPENSSL_CFLAGS" + AC_DEFINE(HAVE_LIBSSL, 1)], + [AC_CHECK_LIB(crypto, BIO_s_mem) + AC_CHECK_LIB(ssl, SSL_new)] + ) + AC_CHECK_FUNCS(SSL_new, x_ssl_openssl=yes, AC_MSG_ERROR([Can't enable openssl]) ) fi @@ -676,7 +727,9 @@ if test $? -eq 0; then # Generate debian/ link if the dpkg command exists # (read: if we are running on a debian compatible system) echo "creating Debian-specific links ..." - test -f debian/rules || ln -s contrib/Debian debian + if test ! -f debian/rules -a -f contrib/Debian/rules; then + ln -s contrib/Debian debian + fi fi # -- Result --