mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-11-27 02:22:00 +08:00
AC_DEFUN cleanup
This commit is contained in:
parent
e93c8f18d4
commit
e371d7c68b
34
aclocal.m4
vendored
34
aclocal.m4
vendored
@ -10,6 +10,10 @@ dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
dnl PARTICULAR PURPOSE.
|
||||
|
||||
dnl OpenLDAP Autoconf Macros
|
||||
dnl $OpenLDAP$
|
||||
dnl This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
||||
dnl
|
||||
dnl Copyright 1998-2005 The OpenLDAP Foundation.
|
||||
dnl All rights reserved.
|
||||
dnl
|
||||
@ -766,9 +770,7 @@ else
|
||||
;;
|
||||
|
||||
*)
|
||||
AC_CHECK_FUNC([dllload],
|
||||
[lt_cv_dlopen="dllload"],
|
||||
[AC_CHECK_FUNC([shl_load],
|
||||
AC_CHECK_FUNC([shl_load],
|
||||
[lt_cv_dlopen="shl_load"],
|
||||
[AC_CHECK_LIB([dld], [shl_load],
|
||||
[lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"],
|
||||
@ -785,7 +787,6 @@ else
|
||||
])
|
||||
])
|
||||
])
|
||||
])
|
||||
;;
|
||||
esac
|
||||
|
||||
@ -1043,10 +1044,6 @@ AC_CACHE_VAL(lt_cv_prog_cc_pic,
|
||||
lt_cv_prog_cc_pic='-KPIC'
|
||||
lt_cv_prog_cc_static='-Bstatic'
|
||||
;;
|
||||
|
||||
openedition)
|
||||
# XPLINK code is PIC by default
|
||||
;;
|
||||
|
||||
osf3* | osf4* | osf5*)
|
||||
# All OSF/1 code is PIC.
|
||||
@ -1787,12 +1784,6 @@ else
|
||||
fi
|
||||
;;
|
||||
|
||||
openedition*)
|
||||
archive_cmds="\$CC -Wl,DLL \$libobjs \$deplibs \$compiler_flags -o \$lib &&
|
||||
cp \$linknames \$output_objdir && linknames=''"
|
||||
export_dynamic_flag_spec="-Wl,DLL"
|
||||
;;
|
||||
|
||||
os2*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_minus_L=yes
|
||||
@ -2330,17 +2321,6 @@ openbsd*)
|
||||
shlibpath_var=LD_LIBRARY_PATH
|
||||
;;
|
||||
|
||||
openedition*)
|
||||
need_lib_prefix=no
|
||||
need_version=no
|
||||
shlibpath_overrides_runpath=yes
|
||||
shlibpath_var=LIBPATH
|
||||
postinstall_cmds="rm \$destdir/\$linkname; cp \$linkname \$destdir; chmod a+x \$lib"
|
||||
# the library's exports are in libname.x; this is the file that must
|
||||
# actually be linked with to use a DLL.
|
||||
library_names_spec="\${libname}\${release}.so\$versuffix \${libname}.x"
|
||||
;;
|
||||
|
||||
os2*)
|
||||
libname_spec='$name'
|
||||
need_lib_prefix=no
|
||||
@ -3519,10 +3499,6 @@ openbsd*)
|
||||
fi
|
||||
;;
|
||||
|
||||
openedition*)
|
||||
lt_cv_deplibs_check_method=pass_all
|
||||
;;
|
||||
|
||||
osf3* | osf4* | osf5*)
|
||||
# this will be overridden with pass_all, but let us keep it just in case
|
||||
lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
|
||||
|
@ -66,7 +66,7 @@ dnl AC_VERBOSE(OpenLDAP --with-$1 $ol_with_$1)
|
||||
dnl
|
||||
dnl ====================================================================
|
||||
dnl
|
||||
AC_DEFUN(AC_COMPILE_CHECK_SIZEOF,
|
||||
AC_DEFUN([AC_COMPILE_CHECK_SIZEOF],
|
||||
[changequote(<<, >>)dnl
|
||||
dnl The name to #define.
|
||||
define(<<AC_TYPE_NAME>>, translit(sizeof_$1, [a-z *], [A-Z_P]))dnl
|
||||
@ -174,7 +174,7 @@ fi
|
||||
dnl
|
||||
dnl --------------------------------------------------------------------
|
||||
dnl OpenLDAP version of STDC header check w/ EBCDIC support
|
||||
AC_DEFUN(OL_HEADER_STDC,
|
||||
AC_DEFUN([OL_HEADER_STDC],
|
||||
[AC_REQUIRE_CPP()dnl
|
||||
AC_REQUIRE([OL_CPP_EBCDIC])dnl
|
||||
AC_CACHE_CHECK([for ANSI C header files], ol_cv_header_stdc,
|
||||
@ -1126,7 +1126,7 @@ dnl ====================================================================
|
||||
dnl Early MIPS compilers (used in Ultrix 4.2) don't like
|
||||
dnl "int x; int *volatile a = &x; *a = 0;"
|
||||
dnl -- borrowed from PDKSH
|
||||
AC_DEFUN(OL_C_VOLATILE,
|
||||
AC_DEFUN([OL_C_VOLATILE],
|
||||
[AC_CACHE_CHECK(if compiler understands volatile, ol_cv_c_volatile,
|
||||
[AC_TRY_COMPILE([int x, y, z;],
|
||||
[volatile int a; int * volatile b = x ? &y : &z;
|
||||
@ -1162,7 +1162,7 @@ fi
|
||||
dnl
|
||||
dnl ====================================================================
|
||||
dnl Define sig_atomic_t if not defined in signal.h
|
||||
AC_DEFUN(OL_TYPE_SIG_ATOMIC_T,
|
||||
AC_DEFUN([OL_TYPE_SIG_ATOMIC_T],
|
||||
[AC_CACHE_CHECK(for sig_atomic_t, ol_cv_type_sig_atomic_t,
|
||||
[AC_TRY_COMPILE([#include <signal.h>], [sig_atomic_t atomic;],
|
||||
ol_cv_type_sig_atomic_t=yes, ol_cv_type_sig_atomic_t=no)])
|
||||
@ -1174,7 +1174,7 @@ AC_DEFUN(OL_TYPE_SIG_ATOMIC_T,
|
||||
dnl
|
||||
dnl ====================================================================
|
||||
dnl Define socklen_t if not defined in sys/types.h or sys/socket.h
|
||||
AC_DEFUN(OL_TYPE_SOCKLEN_T,
|
||||
AC_DEFUN([OL_TYPE_SOCKLEN_T],
|
||||
[AC_CACHE_CHECK(for socklen_t, ol_cv_type_socklen_t,
|
||||
[AC_TRY_COMPILE([
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
@ -1193,7 +1193,7 @@ AC_DEFUN(OL_TYPE_SOCKLEN_T,
|
||||
dnl
|
||||
dnl ====================================================================
|
||||
dnl Define inet_aton is available
|
||||
AC_DEFUN(OL_FUNC_INET_ATON,
|
||||
AC_DEFUN([OL_FUNC_INET_ATON],
|
||||
[AC_CACHE_CHECK([for inet_aton()], ol_cv_func_inet_aton,
|
||||
[AC_TRY_LINK([
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
@ -1220,7 +1220,7 @@ int rc = inet_aton( "255.255.255.255", &in );],
|
||||
dnl
|
||||
dnl ====================================================================
|
||||
dnl check no of arguments for ctime_r
|
||||
AC_DEFUN(OL_FUNC_CTIME_R_NARGS,
|
||||
AC_DEFUN([OL_FUNC_CTIME_R_NARGS],
|
||||
[AC_CACHE_CHECK(number of arguments of ctime_r, ol_cv_func_ctime_r_nargs,
|
||||
[AC_TRY_COMPILE([#include <time.h>],
|
||||
[time_t ti; char *buffer; ctime_r(&ti,buffer,32);],
|
||||
@ -1255,7 +1255,7 @@ AC_DEFUN(OL_FUNC_CTIME_R_NARGS,
|
||||
dnl
|
||||
dnl --------------------------------------------------------------------
|
||||
dnl check return type of ctime_r()
|
||||
AC_DEFUN(OL_FUNC_CTIME_R_TYPE,
|
||||
AC_DEFUN([OL_FUNC_CTIME_R_TYPE],
|
||||
[AC_CACHE_CHECK(return type of ctime_r, ol_cv_func_ctime_r_type,
|
||||
[AC_TRY_COMPILE([#include <time.h>],
|
||||
[extern int (ctime_r)();],
|
||||
@ -1267,7 +1267,7 @@ AC_DEFUN(OL_FUNC_CTIME_R_TYPE,
|
||||
])dnl
|
||||
dnl ====================================================================
|
||||
dnl check no of arguments for gethostbyname_r
|
||||
AC_DEFUN(OL_FUNC_GETHOSTBYNAME_R_NARGS,
|
||||
AC_DEFUN([OL_FUNC_GETHOSTBYNAME_R_NARGS],
|
||||
[AC_CACHE_CHECK(number of arguments of gethostbyname_r,
|
||||
ol_cv_func_gethostbyname_r_nargs,
|
||||
[AC_TRY_COMPILE([#include <sys/types.h>
|
||||
@ -1317,7 +1317,7 @@ AC_DEFUN(OL_FUNC_GETHOSTBYNAME_R_NARGS,
|
||||
])dnl
|
||||
dnl
|
||||
dnl check no of arguments for gethostbyaddr_r
|
||||
AC_DEFUN(OL_FUNC_GETHOSTBYADDR_R_NARGS,
|
||||
AC_DEFUN([OL_FUNC_GETHOSTBYADDR_R_NARGS],
|
||||
[AC_CACHE_CHECK(number of arguments of gethostbyaddr_r,
|
||||
[ol_cv_func_gethostbyaddr_r_nargs],
|
||||
[AC_TRY_COMPILE([#include <sys/types.h>
|
||||
@ -1393,7 +1393,7 @@ AC_DEFUN([OL_SASL_COMPAT],
|
||||
])
|
||||
dnl ====================================================================
|
||||
dnl check for msg_accrights in msghdr
|
||||
AC_DEFUN(OL_MSGHDR_MSG_ACCRIGHTS,
|
||||
AC_DEFUN([OL_MSGHDR_MSG_ACCRIGHTS],
|
||||
[AC_CACHE_CHECK(for msg_accrights in msghdr, ol_cv_msghdr_msg_accrights,
|
||||
[AC_TRY_COMPILE([#include <sys/socket.h>],
|
||||
[struct msghdr m; m.msg_accrightslen=0],
|
||||
@ -1406,7 +1406,7 @@ AC_DEFUN(OL_MSGHDR_MSG_ACCRIGHTS,
|
||||
])dnl
|
||||
dnl ====================================================================
|
||||
dnl check for cmsghdr
|
||||
AC_DEFUN(OL_MSGHDR_MSG_CONTROL,
|
||||
AC_DEFUN([OL_MSGHDR_MSG_CONTROL],
|
||||
[AC_CACHE_CHECK(for msg_control in msghdr, ol_cv_msghdr_msg_control,
|
||||
[AC_TRY_COMPILE([#include <sys/socket.h>],
|
||||
[struct msghdr m; m.msg_control=(struct cmsghdr *)0],
|
||||
|
Loading…
Reference in New Issue
Block a user