Commit c02de476 authored by owsla's avatar owsla

Let setup.py accept arguments on Windows. (Patch from Josh Nisly)


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@881 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 67e7e8a2
New in v1.1.16 (????/??/??) New in v1.1.16 (????/??/??)
--------------------------- ---------------------------
Let setup.py accept arguments on Windows. (Patch from Josh Nisly)
Get cmodule.c building natively on Windows. (Patch from Josh Nisly) Get cmodule.c building natively on Windows. (Patch from Josh Nisly)
Don't give up right away if we can't open a file. Try chmod'ing it even Don't give up right away if we can't open a file. Try chmod'ing it even
......
...@@ -14,7 +14,7 @@ lflags_arg = [] ...@@ -14,7 +14,7 @@ lflags_arg = []
libname = ['rsync'] libname = ['rsync']
incdir_list = libdir_list = None incdir_list = libdir_list = None
if os.name == 'posix': if os.name == 'posix' or os.name == 'nt':
LIBRSYNC_DIR = os.environ.get('LIBRSYNC_DIR', '') LIBRSYNC_DIR = os.environ.get('LIBRSYNC_DIR', '')
LFLAGS = os.environ.get('LFLAGS', []) LFLAGS = os.environ.get('LFLAGS', [])
LIBS = os.environ.get('LIBS', []) LIBS = os.environ.get('LIBS', [])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment