]> Dogcows Code - chaz/tar/commitdiff
(tar_save_LIBS): Bugfix. Thanks Adrian
authorSergey Poznyakoff <gray@gnu.org.ua>
Tue, 11 Nov 2003 15:01:13 +0000 (15:01 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Tue, 11 Nov 2003 15:01:13 +0000 (15:01 +0000)
Bunk <bunk@fs.tum.de> for reporting.

configure.ac

index b0c4431121900d489245c55a58217a5f5c7d49ac..cba275441f581776b4a845be0983ba1f133e8bf8 100644 (file)
@@ -152,8 +152,10 @@ jm_XSTRTOUMAX
 # Solaris 7 prefers the library name -lrt to the obsolescent name -lposix4.
 tar_save_LIBS=$LIBS
   LIB_CLOCK_GETTIME=
-  AC_SEARCH_LIBS(clock_gettime, [rt posix4],
-                [LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime])
+  AC_SEARCH_LIBS(clock_gettime, [rt posix4])
+  case "$ac_cv_search_clock_gettime" in
+    -l*) LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime;;
+  esac
   AC_SUBST(LIB_CLOCK_GETTIME)
   AC_CHECK_FUNCS(clock_gettime)
 LIBS=$tar_save_LIBS
This page took 0.021376 seconds and 4 git commands to generate.