Changeset 739993 in git


Ignore:
Timestamp:
Jul 26, 2006, 5:37:04 AM (18 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
7f7c25e5e9c095ee25b7bfbfbfd3d7e6a7f3575a
Parents:
410d5cde90e3744843dafef9274ac67a185727e2
Message:
run.c / Makefile.in:
Probleme mit run*Singular behoben


git-svn-id: file:///usr/local/Singular/svn/trunk@9352 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/Makefile.in

    r410d5c r739993  
    421421
    422422runTSingular : run.o TSingular_res.o
    423         gcc -mwindows -e _mainCRTStartup run.o TSingular_res.o -o runTSingular.exe
     423        gcc -mwindows run.o TSingular_res.o -o runTSingular.exe
     424#       gcc -mwindows -e _mainCRTStartup run.o TSingular_res.o -o runTSingular.exe
    424425
    425426runESingular : run.o ESingular_res.o
    426         gcc -mwindows -e _mainCRTStartup run.o ESingular_res.o -o runESingular.exe
     427        gcc -mwindows run.o ESingular_res.o -o runESingular.exe
     428#       gcc -mwindows -e _mainCRTStartup run.o ESingular_res.o -o runESingular.exe
    427429
    428430RUN_SINGULARS=runESingular runTSingular
  • Singular/run.c

    r410d5c r739993  
    4646 #include <sys/cygwin.h>
    4747 #include <sys/unistd.h>
    48 WinMainCRTStartup() { mainCRTStartup(); }
     48//WinMainCRTStartup() { mainCRTStartup(); }
    4949#else
    5050 #include <direct.h>
     
    8484         strcpy(execname,argv[0]);
    8585   }
    86    /* at this point, execpath is defined, as are argv[] and execname */   
     86   /* at this point, execpath is defined, as are argv[] and execname */
    8787#ifdef DEBUG
    8888   j = sprintf(buffer,"\nexecname : %s\nexecpath : %s\n",execname,execpath);
     
    130130   start.dwFlags = STARTF_USESHOWWINDOW;
    131131   start.wShowWindow = SW_HIDE;
    132      
     132
    133133   sec_attrs.nLength = sizeof (sec_attrs);
    134134   sec_attrs.lpSecurityDescriptor = NULL;
     
    154154  /*
    155155   * if we're trying to run xemacs, AND this file was in %emacs_dir%\bin,
    156    * then set emacs_dir environment variable 
     156   * then set emacs_dir environment variable
    157157   */
    158158   char* p;
Note: See TracChangeset for help on using the changeset viewer.