1 # Process this file with autoconf to produce a configure script, like so:
3 # aclocal -I .. -I ../config && autoconf && autoheader && automake
7 AC_CONFIG_SRCDIR(ssp.c)
9 ACX_NONCANONICAL_TARGET
13 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
14 AC_ARG_ENABLE(version-specific-runtime-libs,
15 [ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ],
17 yes) version_specific_libs=yes ;;
18 no) version_specific_libs=no ;;
19 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
21 [version_specific_libs=no])
22 AC_MSG_RESULT($version_specific_libs)
27 AM_ENABLE_MULTILIB(, ..)
29 target_alias=${target_alias-$host_alias}
30 AC_SUBST(target_alias)
32 AC_CONFIG_HEADERS(config.h)
35 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
36 # We must force CC to /not/ be precious variables; otherwise
37 # the wrong, non-multilib-adjusted value will be used in multilibs.
38 # As a side effect, we have to subst CFLAGS ourselves.
40 m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
41 m4_define([_AC_ARG_VAR_PRECIOUS],[])
43 m4_rename([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
47 if test "x$GCC" != "xyes"; then
48 AC_MSG_ERROR([libssp must be built with GCC])
52 AC_MSG_CHECKING([whether -fstack-protector works])
54 CFLAGS="$CFLAGS -fstack-protector -Werror"
56 void __attribute__((noinline)) bar (char *x)
58 __builtin_memset (x, 0, 64);
59 }],[char buf[64]; bar (buf);],
64 AC_MSG_CHECKING([whether hidden visibility is supported])
66 void __attribute__((visibility ("hidden"))) bar (void) {}],,
67 [ssp_hidden=yes],[ssp_hidden=no])
68 AC_MSG_RESULT($ssp_hidden)
69 if test x$ssp_hidden = xyes; then
70 AC_DEFINE([HAVE_HIDDEN_VISIBILITY],[1],[__attribute__((visibility ("hidden"))) supported])
73 AC_MSG_CHECKING([whether symbol versioning is supported])
74 cat > conftest.map <<EOF
76 global: *foo*; bar; local: *;
79 save_LDFLAGS="$LDFLAGS"
80 LDFLAGS="$LDFLAGS -fPIC -shared -Wl,--version-script,./conftest.map"
81 AC_TRY_LINK([int foo;],[],[ssp_use_symver=yes],[ssp_use_symver=no])
82 LDFLAGS="$save_LDFLAGS"
83 AC_MSG_RESULT($ssp_use_symver)
84 AM_CONDITIONAL(LIBSSP_USE_SYMVER, [test "x$ssp_use_symver" = xyes])
86 AC_CHECK_HEADERS(alloca.h paths.h syslog.h string.h unistd.h fcntl.h stdio.h limits.h)
88 AC_CHECK_FUNCS(mempcpy strncpy strncat)
90 AC_MSG_CHECKING([whether vsnprintf is usable])
91 AC_RUN_IFELSE(AC_LANG_PROGRAM([
95 int foo (char *buf, size_t n, const char *fmt, ...)
100 ret = vsnprintf (buf, n, fmt, ap);
104 [char buf@<:@8@:>@; memset (buf, 'A', sizeof (buf));
105 if (foo (buf, 4, ".%s.", "CDEFG") != 7)
107 return memcmp (buf, ".CD\0AAAA", sizeof (buf)) != 0;]),
108 [ssp_have_usable_vsnprintf=define],
109 [ssp_have_usable_vsnprintf=undef],
110 [ssp_have_usable_vsnprintf=undef])
111 if test "x$ssp_have_usable_vsnprintf" = xdefine; then
113 AC_DEFINE([HAVE_USABLE_VSNPRINTF],[1],[vsnprintf is present and works])
117 AC_SUBST(ssp_have_usable_vsnprintf)
120 AC_SUBST(enable_shared)
121 AC_SUBST(enable_static)
123 # Calculate toolexeclibdir
124 # Also toolexecdir, though it's only used in toolexeclibdir
125 case ${version_specific_libs} in
127 # Need the gcc compiler version to know where to install libraries
128 # and header files if --enable-version-specific-runtime-libs option
130 toolexecdir='$(libdir)/gcc/$(target_alias)'
131 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
134 if test -n "$with_cross_host" &&
135 test x"$with_cross_host" != x"no"; then
136 # Install a library built with a cross compiler in tooldir, not libdir.
137 toolexecdir='$(exec_prefix)/$(target_alias)'
138 toolexeclibdir='$(toolexecdir)/lib'
140 toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
141 toolexeclibdir='$(libdir)'
143 multi_os_directory=`$CC -print-multi-os-directory`
144 case $multi_os_directory in
145 .) ;; # Avoid trailing /.
146 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
150 AC_SUBST(toolexecdir)
151 AC_SUBST(toolexeclibdir)
153 if test ${multilib} = yes; then
154 multilib_arg="--enable-multilib"
159 AC_CONFIG_FILES([Makefile ssp/ssp.h])