version 1.10, 2025/03/24 19:22:16
|
version 1.11, 2025/03/24 19:25:48
|
Line 24
|
Line 24
|
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* |
* |
* $Log$ |
* $Log$ |
|
* Revision 1.11 2025/03/24 19:25:48 snw |
|
* Make fmadm configure copy freem.exe to freemd.exe for daemon operation on OS/2 systems |
|
* |
* Revision 1.10 2025/03/24 19:22:16 snw |
* Revision 1.10 2025/03/24 19:22:16 snw |
* Make fmadm configure copy freem.exe to freemd.exe for daemon operation on OS/2 systems |
* Make fmadm configure copy freem.exe to freemd.exe for daemon operation on OS/2 systems |
* |
* |
Line 1146 void fm_configure (void)
|
Line 1149 void fm_configure (void)
|
#if defined(__OS2__) |
#if defined(__OS2__) |
{ |
{ |
char srcfile[PATHLEN]; |
char srcfile[PATHLEN]; |
char dstfile[PATHLEN]; |
char dstfile[PATHLEN]; |
|
|
snprintf (srcfile, PATHLEN, "%s/bin/freem.exe", PREFIX); |
snprintf (srcfile, PATHLEN, "%s/bin/freem.exe", PREFIX); |
snprintf (dstfile, PATHLEN, "%s/bin/freemd.exe", PREFIX); |
snprintf (dstfile, PATHLEN, "%s/bin/freemd.exe", PREFIX); |
|
|
|
unlink (dstfile); |
|
|
fprintf (stderr, "fmadm: running on OS/2; will copy %s to %s\n", srcfile, dstfile); |
fprintf (stderr, "fmadm: running on OS/2; will copy %s to %s\n", srcfile, dstfile); |
|
|