mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-27 06:38:44 -05:00
- Fixed typo that prevented -lrt from being added to build for portaudio
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@258 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
8d706e4e4b
commit
634112986f
8
configure
vendored
8
configure
vendored
@ -2,7 +2,7 @@
|
|||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.59 for wsjt 5.9.2.
|
# Generated by GNU Autoconf 2.59 for wsjt 5.9.2.
|
||||||
#
|
#
|
||||||
# $Id: configure.ac 246 2006-08-09 19:51:29Z va3db $
|
# $Id: configure.ac 256 2006-08-10 19:36:41Z va3db $
|
||||||
#
|
#
|
||||||
# Copyright (C) 2003 Free Software Foundation, Inc.
|
# Copyright (C) 2003 Free Software Foundation, Inc.
|
||||||
# This configure script is free software; the Free Software Foundation
|
# This configure script is free software; the Free Software Foundation
|
||||||
@ -976,7 +976,7 @@ Copyright (C) 2003 Free Software Foundation, Inc.
|
|||||||
This configure script is free software; the Free Software Foundation
|
This configure script is free software; the Free Software Foundation
|
||||||
gives unlimited permission to copy, distribute and modify it.
|
gives unlimited permission to copy, distribute and modify it.
|
||||||
|
|
||||||
$Id: configure.ac 246 2006-08-09 19:51:29Z va3db $
|
$Id: configure.ac 256 2006-08-10 19:36:41Z va3db $
|
||||||
_ACEOF
|
_ACEOF
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
@ -4885,9 +4885,9 @@ fi
|
|||||||
echo "$as_me:$LINENO: result: $ac_cv_lib_rt_clock_gettime" >&5
|
echo "$as_me:$LINENO: result: $ac_cv_lib_rt_clock_gettime" >&5
|
||||||
echo "${ECHO_T}$ac_cv_lib_rt_clock_gettime" >&6
|
echo "${ECHO_T}$ac_cv_lib_rt_clock_gettime" >&6
|
||||||
if test $ac_cv_lib_rt_clock_gettime = yes; then
|
if test $ac_cv_lib_rt_clock_gettime = yes; then
|
||||||
RTLIBS=""
|
|
||||||
else
|
|
||||||
RTLIBS="-lrt"
|
RTLIBS="-lrt"
|
||||||
|
else
|
||||||
|
RTLIBS=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
@ -135,7 +135,7 @@ if test "$gcc_cv_header_string" = "yes"; then
|
|||||||
AC_DEFINE(STRING_WITH_STRINGS, 1, [Define to 1 if string.h may be included along with strings.h])
|
AC_DEFINE(STRING_WITH_STRINGS, 1, [Define to 1 if string.h may be included along with strings.h])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CHECK_LIB(rt, clock_gettime, [RTLIBS=""], [RTLIBS="-lrt"])
|
AC_CHECK_LIB(rt, clock_gettime, [RTLIBS="-lrt"], [RTLIBS=""])
|
||||||
|
|
||||||
AC_CHECK_SIZEOF(int64_t)
|
AC_CHECK_SIZEOF(int64_t)
|
||||||
AC_CHECK_SIZEOF(long long)
|
AC_CHECK_SIZEOF(long long)
|
||||||
|
Loading…
Reference in New Issue
Block a user