-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install ast.h and grf.h into $STARLINK/include/star
By default, the header files are also included into $STARLINK/include for the benefit of legacy code, but this can be prevented using the new "--without-topinclude" configure option.
- Loading branch information
Showing
5 changed files
with
99 additions
and
33 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
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ dnl 1.5. It should work with autoconf versions 2.50 or better, and | |
dnl automake 1.6 or better. | ||
|
||
dnl Initialisation: package name and version number | ||
AC_INIT([ast],[8.7.1],[[email protected]]) | ||
AC_INIT([ast],[8.7.2],[[email protected]]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
|
||
dnl Require autoconf-2.50 at least | ||
|
@@ -21,6 +21,22 @@ AC_CONFIG_SRCDIR([ast_link.in]) | |
# Include defaults for Starlink configurations | ||
STAR_DEFAULTS | ||
|
||
# See if the --without-topinclude option has been provided. This sets the | ||
# automake conditional TOPINCLUDE. By default header files are installed | ||
# into both includedir and includedir/star. If --without-topinclude is | ||
# specified when running configure, then the header files are only | ||
# installed into includedir/star. | ||
AC_ARG_WITH( | ||
[topinclude], | ||
AS_HELP_STRING([--without-topinclude],[install headers only in includedir/star - not includedir]), | ||
if test "$withval" = "yes"; then | ||
topinclude="1" | ||
else | ||
topinclude="0" | ||
fi, | ||
topinclude="1") | ||
AM_CONDITIONAL(TOPINCLUDE, test x$topinclude = x1) | ||
|
||
# See if the --with-starmem option has been provided. This sets the | ||
# preprocesor macro HAVE_STAR_MEM_H. | ||
AC_ARG_WITH( | ||
|
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