summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2010-12-10 21:19:01 -0800
committerGary E. Miller <gem@rellim.com>2010-12-10 21:19:01 -0800
commit015a86587e9c41ccfe2d2b8ef0b238e7378d889d (patch)
tree501d110f2058c7f7646fe79e1a3e55fb6fe182c2 /configure.ac
parent21f83a60954682fc8e85b0d407fed4d6dbd93971 (diff)
downloadgpsd-015a86587e9c41ccfe2d2b8ef0b238e7378d889d.tar.gz
Looks for timepps.h in the right place.
RFC2783 says that <sys/timepps.h> is the right place for timepps.h Thanks to Michael Tatarinov <kukabu@gmail.com> for setting me straight.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index d87a0a49..46de227b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -704,8 +704,8 @@ if test x"$ac_pps" = "xyes"; then
AC_MSG_RESULT([yes])
AC_DEFINE([PPS_ENABLE], 1, [PPS time syncing support])
AC_CHECK_HEADERS(pps.h)
- dnl timepps.h needs pps.h
- AC_CHECK_HEADERS(timepps.h)
+ dnl sys/timepps.h needs pps.h
+ AC_CHECK_HEADERS(sys/timepps.h)
else
AC_MSG_RESULT([no])
fi