You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl-cvs@perl.apache.org by ri...@apache.org on 2002/02/12 08:20:37 UTC

cvs commit: embperl/eg/webutil EmbperlWebRecipe.pm db.schema setupdb.pl

richter     02/02/11 23:20:36

  Modified:    driver   Tag: Embperl2c epxalan.MAKEPL
  Added:       Embperl/Recipe Tag: Embperl2c EmbperlPODXSLT.pm
               eg/web   Tag: Embperl2c base.epl config.pl content.epl
                        epwebapp.pl footer.htm header.epl index.htm
                        menuleft.epl messages.pl notfound.htm pod.xsl
               eg/web/db Tag: Embperl2c add.epl addsel.epl content.epl
                        data.epd epwebapp.pl
               eg/web/pod Tag: Embperl2c content.epl
               eg/web/pod/doc Tag: Embperl2c index.htm
               eg/web/pod/intro Tag: Embperl2c index.htm
               eg/webutil Tag: Embperl2c EmbperlWebRecipe.pm db.schema
                        setupdb.pl
  Log:
  embperl web
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +57 -0     embperl/Embperl/Recipe/Attic/EmbperlPODXSLT.pm
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.11  +10 -2     embperl/driver/Attic/epxalan.MAKEPL
  
  Index: epxalan.MAKEPL
  ===================================================================
  RCS file: /home/cvs/embperl/driver/Attic/epxalan.MAKEPL,v
  retrieving revision 1.1.2.10
  retrieving revision 1.1.2.11
  diff -u -r1.1.2.10 -r1.1.2.11
  --- epxalan.MAKEPL	23 Nov 2001 14:50:06 -0000	1.1.2.10
  +++ epxalan.MAKEPL	12 Feb 2002 07:20:35 -0000	1.1.2.11
  @@ -1,4 +1,5 @@
   
  +use File::Spec ;
   use File::Find ;
   use Cwd ;
   
  @@ -35,6 +36,7 @@
               }
           }
   
  +    $path = File::Spec -> canonpath ($path) ;
       my $currdir = Cwd::fastcwd ;
   
       eval { find (\&xalanlib, $win32?"$path/Build":"$path/lib") ; } ;
  @@ -56,6 +58,9 @@
           return undef ;
           }
   
  +    
  +    $xalanlibpath = File::Spec -> canonpath ($xalanlibpath) ;
  +    $xerceslibpath = File::Spec -> canonpath ($xerceslibpath) ;
   
       print "Found Xalan library $xalanlib at $xalanlibpath\n" ;
       print "Found Xerces library $xerceslib at $xerceslibpath\n" ;
  @@ -84,12 +89,15 @@
           }
   
   
  +    my $pathsrc = File::Spec -> canonpath ("$path/src") ;
  +    my $xercesinc = File::Spec -> canonpath ("$xerceslibpath/../include") ;
  +
       "$xalanlib $xerceslib" =~ /^lib(.*?)\.so lib(.*?)\.so$/ ;
   
  -    return { cflags => "-I$path/src -I$xerceslibpath/../include -D_REENTRANT "  , 
  +    return { cflags => "-I\"$pathsrc\" -I\"$xercesinc\" -D_REENTRANT "  , 
                cpp    => $cpp,
                cppflags  => $cppflags,
  -             libs => "-L$xalanlibpath -L$xerceslibpath -l$1 -l$2 $extralibs", 
  +             libs => "-L\"$xalanlibpath\" -L\"$xerceslibpath\" -l\"$1\" -l\"$2\" $extralibs", 
                defines => '-DXALAN' . ($platform?" -D$platform":'') ,
                objects => 'driver/epxalan$(OBJ_EXT)',
                save    => { '$XALANPATH' => $path }} ;
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +25 -0     embperl/eg/web/Attic/base.epl
  
  
  
  
  1.1.2.1   +93 -0     embperl/eg/web/Attic/config.pl
  
  
  
  
  1.1.2.1   +11 -0     embperl/eg/web/Attic/content.epl
  
  
  
  
  1.1.2.1   +105 -0    embperl/eg/web/Attic/epwebapp.pl
  
  
  
  
  1.1.2.1   +1 -0      embperl/eg/web/Attic/footer.htm
  
  
  
  
  1.1.2.1   +28 -0     embperl/eg/web/Attic/header.epl
  
  
  
  
  1.1.2.1   +29 -0     embperl/eg/web/Attic/index.htm
  
  
  
  
  1.1.2.1   +91 -0     embperl/eg/web/Attic/menuleft.epl
  
  
  
  
  1.1.2.1   +41 -0     embperl/eg/web/Attic/messages.pl
  
  
  
  
  1.1.2.1   +1 -0      embperl/eg/web/Attic/notfound.htm
  
  
  
  
  1.1.2.1   +389 -0    embperl/eg/web/Attic/pod.xsl
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +49 -0     embperl/eg/web/db/Attic/add.epl
  
  
  
  
  1.1.2.1   +29 -0     embperl/eg/web/db/Attic/addsel.epl
  
  
  
  
  1.1.2.1   +3 -0      embperl/eg/web/db/Attic/content.epl
  
  
  
  
  1.1.2.1   +27 -0     embperl/eg/web/db/Attic/data.epd
  
  
  
  
  1.1.2.1   +104 -0    embperl/eg/web/db/Attic/epwebapp.pl
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +5 -0      embperl/eg/web/pod/Attic/content.epl
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +1 -0      embperl/eg/web/pod/doc/Attic/index.htm
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +1 -0      embperl/eg/web/pod/intro/Attic/index.htm
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +78 -0     embperl/eg/webutil/Attic/EmbperlWebRecipe.pm
  
  
  
  
  1.1.2.1   +131 -0    embperl/eg/webutil/Attic/db.schema
  
  
  
  
  1.1.2.1   +60 -0     embperl/eg/webutil/Attic/setupdb.pl
  
  
  
  

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