Merge pull request #501 from adamjstewart/patches/m4
Add patch to allow PGI to build M4
This commit is contained in:
commit
8ac1752743
4 changed files with 15 additions and 0 deletions
|
@ -6,6 +6,7 @@ class Autoconf(Package):
|
|||
url = "http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz"
|
||||
|
||||
version('2.69', '82d05e03b93e45f5a39b828dc9c6c29b')
|
||||
version('2.62', '6c1f3b3734999035d77da5024aab4fbd')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
configure("--prefix=%s" % prefix)
|
||||
|
|
|
@ -5,7 +5,9 @@ class Automake(Package):
|
|||
homepage = "http://www.gnu.org/software/automake/"
|
||||
url = "http://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz"
|
||||
|
||||
version('1.15', '716946a105ca228ab545fc37a70df3a3')
|
||||
version('1.14.1', 'd052a3e884631b9c7892f2efce542d75')
|
||||
version('1.11.6', '0286dc30295b62985ca51919202ecfcc')
|
||||
|
||||
depends_on('autoconf')
|
||||
|
||||
|
|
|
@ -7,6 +7,8 @@ class M4(Package):
|
|||
|
||||
version('1.4.17', 'a5e9954b1dae036762f7b13673a2cf76')
|
||||
|
||||
patch('pgi.patch', when='@1.4.17')
|
||||
|
||||
variant('sigsegv', default=True, description="Build the libsigsegv dependency")
|
||||
|
||||
depends_on('libsigsegv', when='+sigsegv')
|
||||
|
|
10
var/spack/repos/builtin/packages/m4/pgi.patch
Normal file
10
var/spack/repos/builtin/packages/m4/pgi.patch
Normal file
|
@ -0,0 +1,10 @@
|
|||
--- a/lib/config.hin
|
||||
+++ b/lib/config.hin
|
||||
@@ -1510,6 +1510,7 @@
|
||||
? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \
|
||||
: (199901L <= __STDC_VERSION__ \
|
||||
&& !defined __HP_cc \
|
||||
+ && !defined __PGI \
|
||||
&& !(defined __SUNPRO_C && __STDC__))) \
|
||||
&& !defined _GL_EXTERN_INLINE_APPLE_BUG)
|
||||
# define _GL_INLINE inline
|
Loading…
Reference in a new issue