You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ja...@apache.org on 2002/03/05 22:19:23 UTC

cvs commit: xml-xerces/perl/hints hpux.pl

jasons      02/03/05 13:19:23

  Added:       perl/hints hpux.pl
  Log:
  	* hints/hpux.pl (Repository):
  	new information for HP-UX
  
  Revision  Changes    Path
  1.1                  xml-xerces/perl/hints/hpux.pl
  
  Index: hpux.pl
  ===================================================================
  # Different C++ compilers on the same architecture are (most likely)
  # not binary compatible.  This poses difficulties in writing hints for
  # MakeMaker.  Suggestions welcome.
  
  use Config;
  
  # if we are using gcc
  if ($Config{gccversion}) {
    # do nothing
  } else {
    # aCC on hp-ux needs HAS_BOOL
    $self->{CCFLAGS} .= " -DHAS_BOOL";
    # we add -lcl to get thread local storage
    # see: http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x0d0a6d96588ad4118fef0090279cd0f9,00.html
    push(@{$self->{LIBS}},'-lcl');
  
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org