Adaptions to revision 241 of nglibisofs

This commit is contained in:
2008-01-19 09:05:13 +00:00
parent dac5a4b801
commit 27c6d40fc9
7 changed files with 70 additions and 14 deletions

View File

@ -75,6 +75,7 @@ then
libisofs="$libisofs $isofs"/fs_local.o
libisofs="$libisofs $isofs"/fsource.o
libisofs="$libisofs $isofs"/image.o
libisofs="$libisofs $isofs"/iso1999.o
libisofs="$libisofs $isofs"/joliet.o
libisofs="$libisofs $isofs"/libiso_msgs.o
libisofs="$libisofs $isofs"/messages.o

View File

@ -355,6 +355,7 @@ int Xorriso_aquire_drive(struct XorrisO *xorriso, char *adr, int flag)
memset(&ropts, sizeof(ropts), 0);
ropts.norock= 0;
ropts.nojoliet= 0;
ropts.noiso1999= 1;
ropts.preferjoliet= 0;
ropts.uid= 0;
ropts.gid= 0;
@ -511,14 +512,15 @@ int Xorriso_write_session(struct XorrisO *xorriso, int flag)
sopts.level= 2;
sopts.rockridge= 1;
sopts.joliet= !!xorriso->do_joliet;
sopts.iso1999= 0;
sopts.omit_version_numbers= 0;
sopts.allow_deep_paths= 1;
sopts.allow_longer_paths= 0;
sopts.max_37_char_filenames= 0;
sopts.no_force_dots= 0;
sopts.allow_lowercase= 0;
sopts.allow_full_ascii= 0;
sopts.joliet_longer_paths= 0;
sopts.copy_eltorito= 1;
sopts.sort_files= 1;
sopts.replace_dir_mode= 2*!!xorriso->do_global_mode;
sopts.dir_mode= xorriso->global_dir_mode;

View File

@ -47,6 +47,8 @@ xorriso_xorriso_SOURCES = \
libisofs/tree.c \
libisofs/image.h \
libisofs/image.c \
libisofs/iso1999.h \
libisofs/iso1999.c \
libisofs/fsource.h \
libisofs/fsource.c \
libisofs/fs_local.c \

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.01.18.101933"
#define Xorriso_timestamP "2008.01.19.090417"