Skip to content

Commit

Permalink
remove duplicate block
Browse files Browse the repository at this point in the history
  • Loading branch information
marka63 committed Nov 12, 2018
1 parent 7a7cf95 commit 5e3f20a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 63 deletions.
41 changes: 0 additions & 41 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -19911,47 +19911,6 @@ rm -f core conftest.err conftest.$ac_objext \
# AM_CONDITIONAL([LD_WRAP], [test $enable_ld_wrap = yes])


LDFLAGS=$save_LDFLAGS

#
# Check for -Wl,--wrap= support
#

save_LDFLAGS=$LDFLAGS
LDFLAGS="--wrap=printf"

LD_WRAP_TESTS=false
enable_ld_wrap=no
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for linker support for --wrap option" >&5
$as_echo_n "checking for linker support for --wrap option... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <stdio.h>
int
main ()
{
__wrap_printf("success"); return (0);
;
return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
enable_ld_wrap=yes
LD_WRAP_TESTS=true

$as_echo "#define LD_WRAP 1" >>confdefs.h

{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
# AM_CONDITIONAL([LD_WRAP], [test $enable_ld_wrap = yes])


LDFLAGS=$save_LDFLAGS

#
Expand Down
22 changes: 0 additions & 22 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2453,28 +2453,6 @@ AC_SUBST([LD_WRAP_TESTS])

LDFLAGS=$save_LDFLAGS

#
# Check for -Wl,--wrap= support
#

save_LDFLAGS=$LDFLAGS
LDFLAGS="--wrap=printf"

LD_WRAP_TESTS=false
enable_ld_wrap=no
AC_MSG_CHECKING([for linker support for --wrap option])
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include <stdio.h>], [__wrap_printf("success"); return (0);])],
[enable_ld_wrap=yes
LD_WRAP_TESTS=true
AC_DEFINE([LD_WRAP], [1], [define if the linker supports --wrap option])
AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([no])])
# AM_CONDITIONAL([LD_WRAP], [test $enable_ld_wrap = yes])
AC_SUBST([LD_WRAP_TESTS])

LDFLAGS=$save_LDFLAGS

#
# Check whether to build Automated Test Framework unit tests
#
Expand Down

0 comments on commit 5e3f20a

Please sign in to comment.