Changeset 3324

Show
Ignore:
Timestamp:
08/17/06 11:52:26 (2 years ago)
Author:
timothy
Message:

Support for exslt in styles.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Colloquy.xcodeproj/project.pbxproj

    r3319 r3324  
    29012901                                        "-lxml2", 
    29022902                                        "-lxslt", 
     2903                                        "-lexslt", 
    29032904                                ); 
    29042905                                PRODUCT_NAME = Colloquy; 
  • trunk/main.m

    r3041 r3324  
    22#import <libxml/parser.h> 
    33#import <libxslt/xslt.h> 
     4#import <libexslt/exslt.h> 
    45 
    56int main( int count, const char *arg[] ) { 
     
    78 
    89        xmlInitParser(); 
     10        exsltRegisterAll(); 
    911        xmlSubstituteEntitiesDefault( 1 ); 
    1012        xmlLoadExtDtdDefaultValue = 1; 
     
    2022        [pool release]; 
    2123 
    22         int ret = NSApplicationMain( count, arg ); 
    23  
    24         xsltCleanupGlobals(); 
    25         xmlCleanupParser(); 
    26         return ret; 
     24        return NSApplicationMain( count, arg ); 
    2725}