-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STARLINK_DIR does not have to be set at build time in a Starlink build but STARCONF_DEFAULT_PREFIX must be set.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script | |
AC_REVISION($Revision: 27534 $) | ||
|
||
dnl Initialisation: package name and version number | ||
AC_INIT([pal],[0.9.0],[[email protected]]) | ||
AC_INIT([pal],[0.9.1],[[email protected]]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
|
||
dnl Require autoconf-2.50 at least | ||
|
@@ -42,10 +42,10 @@ AC_CHECK_LIB([m],[sin]) | |
dnl We can not simply test for Starlink starutil because | ||
dnl when configure runs in a Starlink build starutil will not | ||
dnl have been built yet. If --without-starlink has been used | ||
dnl $STARLINK will be unset but to play safe we check STARLINK_DIR | ||
dnl $STARLINK will be unset but to play safe we check STARCONF_DEFAULT_PREFIX | ||
dnl If we do not have Starlink we can do the test anyhow just in case | ||
|
||
if test -n "$STARLINK_DIR" | ||
if test -n "$STARCONF_DEFAULT_PREFIX" | ||
then | ||
AC_SUBST( STARUTIL_LIBADD, "${libdir}/libstarutil.la" ) | ||
AC_SUBST( ERFA_LIBADD, "${libdir}/liberfa.la" ) | ||
|