Hello

Instead. Download below from the svn repository as Makefile.Revision.4490

Revision 4490 - (download) (annotate) 
Tue Jan 8 21:31:59 2008 UTC (11 days, 13 hours ago) by adb014 
File size: 5110 byte(s) 
Fix build issue with cygwin/mingw (For Tatsuro Matsuoka)

diff -c -c Makefile.Revision.4490 Makefile > Makefile.diff

Regrads

Tatssuro

*** Makefile.Revision.4490      Sun Jan 20 20:31:07 2008
--- Makefile    Sun Jan 20 11:39:56 2008
***************
*** 4,18 ****
  FIXEDTARGET = fixed.oct 
  
  LIBPRE = lib
! LIBEXT = a
  LIBIMPEXT = dll.a
  DLLDEF =
! 
! ifeq (,$(findstring msdosmsvc,$(canonical_host_type)))
!   LIBPRE =
!   LIBEXT = lib
!   LIBIMPEXT = lib
!   DLLDEF =
  endif
  
  ifeq (1,$(OCT_INCLUDES_LIB))
--- 4,29 ----
  FIXEDTARGET = fixed.oct 
  
  LIBPRE = lib
! LIBEXT = dll
  LIBIMPEXT = dll.a
  DLLDEF =
! ifneq (,$(findstring cygwin,$(canonical_host_type)))
!    OCT_INCLUDES_LIB = 1
!    DLLDEF = -DFIXED_DLL
!    FIXEDIMPTARGET = $(LIBPRE)octave_fixed.$(LIBIMPEXT)
!    ADD_FLAGS = -Wl,--out-implib=$(FIXEDIMPTARGET)
! endif
! ifneq (,$(findstring mingw,$(canonical_host_type)))
!    OCT_INCLUDES_LIB = 1
!    DLLDEF = -DFIXED_DLL
!    FIXEDIMPTARGET = $(LIBPRE)octave_fixed.$(LIBIMPEXT)
!    ADD_FLAGS = -Wl,--out-implib=$(FIXEDIMPTARGET)
! endif
! ifneq (,$(findstring msdosmsvc,$(canonical_host_type)))
!    OCT_INCLUDES_LIB = 1
!    LIBPRE =
!    LIBIMPEXT = lib
!    DLLDEF = -DFIXED_DLL
  endif
  
  ifeq (1,$(OCT_INCLUDES_LIB))
***************
*** 130,136 ****
  
  $(FIXEDTARGET) : $(DEPENDS) $(FIXEDOBJECTS) 
        @echo "Linking $@"; \
!       $(MKOCTFILE) $(MOFLAGS) $(FIXEDOBJECTS) $(EXTRALIBS) -o $@
  
  $(FIXEDVERTARGET) :
        @echo "Creating $@"; $(RM) -f $@; \
--- 141,147 ----
  
  $(FIXEDTARGET) : $(DEPENDS) $(FIXEDOBJECTS) 
        @echo "Linking $@"; \
!       $(MKOCTFILE) $(ADD_FLAGS) $(MOFLAGS) $(FIXEDOBJECTS) $(EXTRALIBS) -o $@
  
  $(FIXEDVERTARGET) :
        @echo "Creating $@"; $(RM) -f $@; \

--- dbateman <[EMAIL PROTECTED]> wrote:

> 
> 
> 
> Tatsuro MATSUOKA-2 wrote:
> > 
> > Hi David
> > 
> > Please apply the patch in my previous mail to src/Makefile in the fixed
> > package.
> > 
> 
> Could you create a patch with
> 
> svn diff -r HEAD Makefile
> 
> instead of the diff you've done. I applied one of your previous non-working
> for MSVC patches and so the patch you sent doesn't apply cleanly
> 
> Regards
> David
> 
> 
> -- 
> View this message in context:
> http://www.nabble.com/Creating-library-file-in-fixed-package-for-mingw-tp14562936p14980333.html
> Sent from the octave-dev mailing list archive at Nabble.com.
> 
> 
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2008.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> Octave-dev mailing list
> Octave-dev@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/octave-dev
> 


--------------------------------------
Easy + Joy + Powerful = Yahoo! Bookmarks x Toolbar
http://pr.mail.yahoo.co.jp/toolbar/

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to