mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 06:50:12 +00:00
build: update search paths for solaris cc
Move the macros to search for the solaris cc to a separate macro and update the search paths to keep up with released versions. Change-Id: Iaba816f1acf5f45d4e147ae517e73949eb8fe949 Reviewed-on: https://gerrit.openafs.org/12528 Reviewed-by: Benjamin Kaduk <kaduk@mit.edu> Tested-by: BuildBot <buildbot@rampaginggeek.com>
This commit is contained in:
parent
6ea6c182c7
commit
69aadea298
@ -461,11 +461,7 @@ case $system in
|
||||
*-solaris*)
|
||||
MKAFS_OSTYPE=SOLARIS
|
||||
AC_MSG_RESULT(sun4)
|
||||
AC_PATH_PROG(SOLARISCC, [cc], ,
|
||||
[/opt/SUNWspro/bin:/opt/SunStudioExpress/bin:/opt/solarisstudio12.3/bin:/opt/solstudio12.2/bin:/opt/sunstudio12.1/bin])
|
||||
if test "x$SOLARISCC" = "x" ; then
|
||||
AC_MSG_FAILURE(Could not find the solaris cc program. Please define the environment variable SOLARISCC to specify the path.)
|
||||
fi
|
||||
SOLARIS_PATH_CC
|
||||
SOLARIS_UFSVFS_HAS_DQRWLOCK
|
||||
SOLARIS_FS_HAS_FS_ROLLED
|
||||
SOLARIS_SOLOOKUP_TAKES_SOCKPARAMS
|
||||
|
15
src/cf/solaris-cc.m4
Normal file
15
src/cf/solaris-cc.m4
Normal file
@ -0,0 +1,15 @@
|
||||
AC_DEFUN([SOLARIS_PATH_CC], [
|
||||
AC_PATH_PROG([SOLARISCC], [cc], [],
|
||||
[m4_join([:],
|
||||
[/opt/SUNWspro/bin],
|
||||
[/opt/SunStudioExpress/bin],
|
||||
[/opt/developerstudio12.5/bin],
|
||||
[/opt/solarisstudio12.4/bin],
|
||||
[/opt/solarisstudio12.3/bin],
|
||||
[/opt/solstudio12.2/bin],
|
||||
[/opt/sunstudio12.1/bin])])
|
||||
AS_IF([test "x$SOLARISCC" = "x"],
|
||||
[AC_MSG_FAILURE([m4_join([ ],
|
||||
[Could not find the solaris cc program.],
|
||||
[Please define the environment variable SOLARISCC to specify the path.])])])
|
||||
])
|
Loading…
Reference in New Issue
Block a user