Skip to content
GitLab
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
71c792c0
Commit
71c792c0
authored
Aug 17, 2002
by
Per Cederqvist
Browse files
Use "test x && test y" instead of "test x -a y", since the -a option
is less portable than the "&&" construct.
parent
a3eaa163
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
71c792c0
dnl $Id: configure.in,v 1.8
6
2002/08/1
1
1
2
:3
4:46
ceder Exp $
dnl $Id: configure.in,v 1.8
7
2002/08/1
7
1
7
:3
2:58
ceder Exp $
dnl Configuration for LysKOM
dnl Copyright (C) 1993-2002 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.8
6
$)
AC_REVISION($Revision: 1.8
7
$)
AC_PREREQ(2.53)
AC_INIT([lyskom-server], [2.0.7])
AC_CONFIG_SRCDIR([src/server/lyskomd.h])
...
...
@@ -173,7 +173,7 @@ then]
AC_CHECK_FUNCS(mallinfo)
[fi]
[if test "$use_gcov" = "yes"
-a
-n "$GCC"; then]
[if test "$use_gcov" = "yes"
&& test
-n "$GCC"; then]
CMOD_CHECK_CC_OPT([-ftest-coverage], [test_coverage])
CMOD_CHECK_CC_OPT([-fprofile-arcs], [profile_arcs])
AC_DEFINE([AVOID_ABORTS], 1,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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