소스 검색

Stop solaris from warning about localtime_r and friends. AFAICT, no other platforms want this.

svn:r4827
Nick Mathewson 20 년 전
부모
커밋
5f2eea29f7
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      configure.in

+ 6 - 0
configure.in

@@ -44,6 +44,12 @@ if test $enable_threads = "yes"; then
   AC_DEFINE(ENABLE_THREADS, 1, [Defined if we will try to use multithreading])
 fi
 
+case $host in
+   *-*-solaris* )
+     AC_DEFINE(_REENTRANT, 1, [Define on some platforms to activate x_r() functions in time.h])
+     ;;
+esac
+
 AC_PROG_CC
 AC_PROG_MAKE_SET
 AC_PROG_RANLIB