Diff for /freem/src/init.c between versions 1.14 and 1.15

version 1.14, 2025/04/20 03:13:17 version 1.15, 2025/05/16 04:02:14
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.15  2025/05/16 04:02:14  snw
    *   Make FreeM build on macOS on Apple Silicon
    *
  *   Revision 1.14  2025/04/20 03:13:17  snw   *   Revision 1.14  2025/04/20 03:13:17  snw
  *   Updates to init_execution_context   *   Updates to init_execution_context
  *   *
Line 85 Line 88
 # include <termios.h>  # include <termios.h>
 #endif  #endif
   
   #if defined(__APPLE__)
   # define termio termios
   # define TCGETA TIOCGETA
   # define TCSETA TIOCSETA
   #endif
   
 #include "config.h"  #include "config.h"
   
 #if defined(HAVE_MWAPI_MOTIF)  #if defined(HAVE_MWAPI_MOTIF)

Removed from v.1.14  
changed lines
  Added in v.1.15


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>