Introduced alternative Makefile.am for libxorriso production

This commit is contained in:
2009-06-23 06:57:34 +00:00
parent 4433890336
commit 1be341c96d
5 changed files with 262 additions and 7 deletions

View File

@ -142,6 +142,9 @@ or
/* ------------------------------------------------------------------------ */
#ifndef Xorriso_without_subS
#ifndef Xorriso_sfile_externaL
/* @param flag bit0= do not clip of carriage return at line end
*/
@ -19932,6 +19935,12 @@ ex:;
}
int Xorriso_change_is_pending(struct XorrisO *xorriso, int flag)
{
return(!!xorriso->volset_change_pending);
}
int Xorriso_protect_stdout(struct XorrisO *xorriso, int flag)
{
if(xorriso->dev_fd_1>=0)
@ -20101,6 +20110,7 @@ int Xorriso_make_return_value(struct XorrisO *xorriso, int flag)
return(exit_value);
}
#endif /* ! Xorriso_without_subS */
#ifdef Xorriso_with_maiN
@ -20176,7 +20186,7 @@ int Xorriso_main(int argc, char **argv)
}
end_sucessfully:;
Xorriso_process_msg_queues(xorriso, 0);
if(xorriso->volset_change_pending)
if(Xorriso_change_is_pending(xorriso, 0))
Xorriso_option_end(xorriso, 2);
Xorriso_process_msg_queues(xorriso, 0);
ret= Xorriso_make_return_value(xorriso, 0);