Changeset 532

Show
Ignore:
Timestamp:
04/23/05 19:49:25 (4 years ago)
Author:
abauer
Message:

Modified the Makefile so that the module can be distributed

Tagged version 0.17

renamed sample to sample.py

Location:
plugins/python-module
Files:
3 modified
1 moved

Legend:

Unmodified
Added
Removed
  • plugins/python-module/Makefile.am

    r523 r532  
    33 
    44INCLUDES = -I$(top_srcdir) 
     5 
     6EXTRA_DIST = src/sample.py 
    57 
    68OPENSYNC_LIBS=-lopensync 
     
    1416python_module_la_LIBADD = @PYTHON_LIBS@ 
    1517 
    16 pythonplg_DATA = src/sample 
     18pythonplg_DATA = src/sample.py 
  • plugins/python-module/configure.in

    r523 r532  
    22 
    33AC_PREREQ(2.58) 
    4 AC_INIT([OpenSync Python Module], 0.01, [], [libopensync-plugin-python]) 
     4AC_INIT([OpenSync Python Module], 0.17, [], [libopensync-plugin-python]) 
    55AM_INIT_AUTOMAKE(foreign) 
    66AC_CONFIG_SRCDIR(src/python_module.c) 
  • plugins/python-module/src/python_module.c

    r523 r532  
    327327         
    328328        PyObject *pyinfo = PyObject_CallMethod(module, "OSyncPluginInfo", "O", pyinfo_cobject); 
    329         osync_trace(TRACE_INTERNAL, "pyinfo: %p\n", pyinfo); 
    330329        if (!pyinfo) { 
    331330                osync_error_set(error, OSYNC_ERROR_GENERIC, "Cannot create Python OSyncPluginInfo");