X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmain.C;h=c7286c0e21b93fa77808fa5be274dab115f20335;hb=3bc4d28449143f6c90cf8209f29693c975801b28;hp=770b5aedcaffc0a8a429aa495f9cd942ddf20be7;hpb=7d09a8c0e72b879c36587a884fd404f31234ba18;p=lyx.git diff --git a/src/main.C b/src/main.C index 770b5aedca..c7286c0e21 100644 --- a/src/main.C +++ b/src/main.C @@ -1,42 +1,47 @@ -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. +/** + * \file main.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ====================================================== */ + * \author Lars Gullik Bjønnes + * \author Jean Marc Lasgouttes + * + * Full author contact details are available in file CREDITS. + */ #include +#include "debug.h" #include "lyx_main.h" #include "gettext.h" -#include "LString.h" -#include "support/filetools.h" -#include "frontends/GUIRunTime.h" +#include "support/os.h" + +#include + +#ifdef HAVE_IOS +#include +#endif + + +namespace fs = boost::filesystem; int main(int argc, char * argv[]) { - int const val = GUIRunTime::initApplication(argc, argv); - if (val) - return val; - - // lyx_localedir is used by gettext_init() is we have - // i18n support built-in - string lyx_localedir = GetEnvPath("LYX_LOCALEDIR"); - if (lyx_localedir.empty()) - lyx_localedir = LOCALEDIR; - - // initialize for internationalized version *EK* - locale_init(); - gettext_init(lyx_localedir); - -#ifdef __EMX__ - _wildcard(&argc, &argv); +#ifdef HAVE_IOS + std::ios_base::sync_with_stdio(false); #endif + fs::path::default_name_check(fs::no_check); + + // To avoid ordering of global object problems with some + // stdlibs we do the initialization here, but still as + // early as possible. + lyx::lyxerr.rdbuf(std::cerr.rdbuf()); + + lyx::support::os::init(argc, argv); + + // initialize for internationalized version *EK* + lyx::locale_init(); - LyX lyx(&argc, argv); - return 0; // SUCCESS + return lyx::LyX::exec(argc, argv); }