Changeset 1095


Ignore:
Timestamp:
Aug 5, 2008 4:34:33 PM (16 years ago)
Author:
gah
Message:

yet another fix for perl language binding

Location:
trunk/lang/perl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/lang/perl/Makefile.in

    r1094 r1095  
    2121CFLAGS_DEFAULT  = @CFLAGS_DEFAULT@
    2222LIB_SEARCH_DIRS = @LIB_SEARCH_DIRS@
    23 CFLAGS          = @CFLAGS@ $(cppflags)
     23CFLAGS          = @CFLAGS@
    2424
    2525AR              = ar
     
    2828RANLIB          = @RANLIB@
    2929RM              = rm -f
    30 RM              = rm -f
    3130VPATH           = $(srcdir)
    3231
     
    5655destdir         = $(libdir)/perl
    5756
    58 CC_SWITCHES     = $(CFLAGS) $(CFLAGS_DEBUG) $(INCLUDES) $(DEFINES)
    59 CXX_SWITCHES    = $(CFLAGS) $(CFLAGS_DEBUG) $(INCLUDES) $(DEFINES)
     57CXX_SWITCHES    = $(CFLAGS) $(cppflags) $(CFLAGS_DEBUG) $(INCLUDES) $(DEFINES)
    6058
    6159INCLUDES        = \
  • trunk/lang/perl/Rappture.xs

    r1089 r1095  
    1515RpLibrary *
    1616RpLibrary::new(filename = "")
    17 char *filename
     17const char *filename
    1818    CODE:
    1919        RpLibrary *library;
     
    4040const char *
    4141RpLibrary::get( path )
    42 char *path
     42const char *path
    4343    CODE:
    4444        string result;
     
    5050void
    5151RpLibrary::put( path, value, append )
    52 char *path
    53 char *value
     52const char *path
     53const char *value
    5454int append
    5555    CODE:
     
    5858void
    5959RpLibrary::putFile( path, fileName, compress, append )
    60 char *path
    61 char *fileName
     60const char *path
     61const char *fileName
    6262int compress
    6363int append
Note: See TracChangeset for help on using the changeset viewer.