From: Bruce Momjian Date: Fri, 8 Oct 1999 17:15:07 +0000 (+0000) Subject: Define __alpha__ for __alpha. X-Git-Tag: REL6_5_3~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df26ad5acc03fbbb5990748f6bd156135d9085bc;p=thirdparty%2Fpostgresql.git Define __alpha__ for __alpha. --- diff --git a/src/makefiles/Makefile.alpha b/src/makefiles/Makefile.alpha index a9e8e948ec6..6fb505e32eb 100644 --- a/src/makefiles/Makefile.alpha +++ b/src/makefiles/Makefile.alpha @@ -1,2 +1,7 @@ +/* some platforms define __alpha, but not __alpha__ */ +#if defined(__alpha) && !defined(__alpha__) +#define __alpha__ +#endif + %.so: %.o $(LD) -shared -expect_unresolved '*' -o $@ $<