Changeset 912
- Timestamp:
- May 27, 2016, 1:59:30 PM (9 years ago)
- Location:
- trunk/server/source3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/build.cmd
r903 r912 86 86 * - redirect lxlite output to build.lxl 87 87 * 88 * version 1.1.3 from 11.05.2016 Silvan 89 * - added the need for libcx 90 * 91 * version 1.1.4 from 13.05.2016 Silvan 92 * - changed arch to i686 93 * 88 94 */ 89 95 … … 96 102 97 103 /* init the version string (don't forget to change) */ 98 version = "1.1. 2"99 version_date = "1 5.04.2016"104 version = "1.1.4" 105 version_date = "13.05.2016" 100 106 101 107 '@echo off' … … 351 357 SetCLFlags: procedure expose scriptfile 352 358 353 call lineout scriptfile, "CFLAGS='-O2 -g -march= pentium'";359 call lineout scriptfile, "CFLAGS='-O2 -g -march=i686'"; 354 360 call lineout scriptfile, "export CFLAGS"; 355 call lineout scriptfile, "CXXFLAGS='-O2 -g -march= pentium'";361 call lineout scriptfile, "CXXFLAGS='-O2 -g -march=i686'"; 356 362 call lineout scriptfile, "export CXXFLAGS"; 357 363 call lineout scriptfile, "LDFLAGS=' -Zhigh-mem -Zomf -Zargs-wild -Zargs-resp'"; 358 364 call lineout scriptfile, "export LDFLAGS"; 359 call lineout scriptfile, "LIBS='-lmmap -lintl '";365 call lineout scriptfile, "LIBS='-lmmap -lintl -llibcx0'"; 360 366 call lineout scriptfile, "export LIBS"; 361 367 return -
trunk/server/source3/lib/system.c
r902 r912 842 842 return fopen(path, type); 843 843 844 memset(typeNew, '\0', sizeof(typeNew));845 844 strncpy(typeNew, type, strlen(type)); 846 845 strncat (typeNew, (const char*)'b', 1);
Note:
See TracChangeset
for help on using the changeset viewer.