Path: utzoo!utgpu!news-server.csri.toronto.edu!clyde.concordia.ca!uunet!lll-winken!elroy.jpl.nasa.gov!jpl-devvax!lwall From: lwall@jpl-devvax.JPL.NASA.GOV (Larry Wall) Newsgroups: comp.lang.perl Subject: Re: Predefining machine-dependent subroutines Message-ID: <10035@jpl-devvax.JPL.NASA.GOV> Date: 19 Oct 90 17:21:26 GMT References: Reply-To: lwall@jpl-devvax.JPL.NASA.GOV (Larry Wall) Distribution: comp Organization: Jet Propulsion Laboratory, Pasadena, CA Lines: 11 In article tml@tik.vtt.fi (Tor Lillqvist) writes: : The header files on HP-UX are full of #ifdef __hp9000s800 type stuff. : H2ph turns this into if (defined &__hp9000s800). Now the question is: : How to get perl to predefine the appropriate subroutines? The h2ph : generated files are rather useless now... How about this? sub __hp9000s800 { 1; } Larry