Menu

#254 make on cygwin

Feature_Request
closed-fixed
SciTE (658)
3
2005-02-03
2005-01-04
No

Hi,

With some small changes scite will compile on cygwin
more conveniently. Here's a patch:

? makefile.diff
Index: makefile
===================================================================
RCS file: /var/lib/cvs/scite/win32/makefile,v
retrieving revision 1.1.1.1
diff -c -d -H -t -r1.1.1.1 makefile
*** makefile 7 Sep 2004 01:07:26 -0000 1.1.1.1
--- makefile 4 Jan 2005 01:06:21 -0000
***************
*** 4,14 ****
--- 4,24 ----
# This makefile assumes the mingw32 version of GCC
2.95.3 is used and changes will
# be needed to use other compilers.

+ ifdef TERM
+ # Assume that any defined TERM implies cygwin.
+ CYGWIN = 1
+ endif
+
.SUFFIXES: .cxx
CC = g++
DLLWRAP = dllwrap
+ ifndef CYGWIN
DEL = del /q
COPY = copy
+ else
+ DEL = rm
+ COPY = cp
+ endif

PROG = ../bin/SciTE.exe
PROGSTATIC = ../bin/Sc1.exe

Discussion

  • Neil Hodgson

    Neil Hodgson - 2005-01-04

    Logged In: YES
    user_id=12579

    I will examine this when I return from holiday in February.

     
  • Neil Hodgson

    Neil Hodgson - 2005-01-04
    • assigned_to: nobody --> nyamatongwe
     
  • Neil Hodgson

    Neil Hodgson - 2005-02-03
    • milestone: --> Feature_Request
    • priority: 5 --> 3
    • status: open --> closed-fixed
     
  • Neil Hodgson

    Neil Hodgson - 2005-02-03

    Logged In: YES
    user_id=12579

    OK, committed.

     

Log in to post a comment.