summaryrefslogtreecommitdiff
path: root/libgomp/configure.ac
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2006-09-13 02:04:18 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2006-09-13 02:04:18 +0100
commitc663e301034033aa098dd63b3d141c8edb51c223 (patch)
tree7bc68cc714505a842f95c6794e5a70120ccf250d /libgomp/configure.ac
parent48de786822a56dbfc3d434c13d19d3dd91aa801e (diff)
downloadgcc-c663e301034033aa098dd63b3d141c8edb51c223.tar.gz
re PR c/28768 (Preprocessor doesn't parse tokens correctly?)
libcpp: PR c/28768 PR preprocessor/14634 * lex.c (lex_string): Pedwarn for unterminated literals. libgomp: * configure.ac (HAVE_CLOCK_GETTIME): Add missing second argument to AC_DEFINE. * configure: Regenerate. gcc/testsuite: * gcc.dg/cpp/include2.c, gcc.dg/cpp/macspace1.c, gcc.dg/cpp/macspace2.c, gcc.dg/cpp/multiline.c, gcc.dg/cpp/trad/literals-2.c: Update expected diagnostics. From-SVN: r116915
Diffstat (limited to 'libgomp/configure.ac')
-rw-r--r--libgomp/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/configure.ac b/libgomp/configure.ac
index 5d11982b157..d6f960e3833 100644
--- a/libgomp/configure.ac
+++ b/libgomp/configure.ac
@@ -227,7 +227,7 @@ esac
if test $ac_cv_func_clock_gettime = no; then
AC_CHECK_LIB(rt, clock_gettime,
[LIBS="-lrt $LIBS"
- AC_DEFINE(HAVE_CLOCK_GETTIME,
+ AC_DEFINE(HAVE_CLOCK_GETTIME, 1,
[Define to 1 if you have the `clock_gettime' function.])])
fi