Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
94476828
Commit
94476828
authored
Jun 25, 1999
by
Per Cederqvist
Browse files
Check for sig_atomic_t.
parent
0f4e301e
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
94476828
dnl $Id: configure.in,v 1.6
6
1999/06/2
3
21:
57:28
ceder Exp $
dnl $Id: configure.in,v 1.6
7
1999/06/2
5
21:
21:02
ceder Exp $
dnl Configuration for LysKOM
dnl Copyright (C) 1993-1999 Lysator Academic Computer Association.
dnl
...
...
@@ -18,7 +18,7 @@ dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
dnl
dnl Please mail bug reports to bug-lyskom@lysator.liu.se.
dnl
AC_REVISION($Revision: 1.6
6
$)
AC_REVISION($Revision: 1.6
7
$)
AC_INIT(src/server/lyskomd.h)
AM_CONFIG_HEADER(config.h)
AC_CONFIG_AUX_DIR(scripts)
...
...
@@ -186,6 +186,19 @@ AC_C_INLINE
CMOD_C_ATTRIBUTE_UNUSED
AC_HEADER_STDC
AC_TYPE_PID_T
dnl
dnl Check for sig_atomic_t
dnl
AC_CACHE_CHECK([if sig_atomic_t exists], kom_cv_type_sig_atomic_t,
[AC_TRY_COMPILE([#include <signal.h>],
[sig_atomic_t t;],
[kom_cv_type_sig_atomic_t=yes],
[kom_cv_type_sig_atomic_t=no])])
[if test $kom_cv_type_sig_atomic_t = no
then]
AC_DEFINE(sig_atomic_t, int)
[fi]
dnl
# FIXME: is this needed now that we use AM_C_PROTOTYPES?
AC_MSG_CHECKING([if _HPUX_SOURCE needs to be defined])
AC_CACHE_VAL([kom_cv_sys_hpux_source],
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment