mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-20 19:19:02 -04:00
Adjusted the code to make it compile and run under Linux.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3074 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
377339a185
commit
eefb14473a
@ -29,7 +29,7 @@ OBJS1 = pctile.o graycode.o sort.o ssort.o \
|
||||
fil3.o redsync.o decoder.o grid2n.o n2grid.o timer.o \
|
||||
decode9a.o peakdt9.o getlags.o afc9.o fchisq.o \
|
||||
twkfreq.o downsam9.o symspec2.o ipcomm.o sleep_msec.o \
|
||||
stdmsg.o
|
||||
stdmsg.o sec_midn.o cutil.o
|
||||
|
||||
libjt9.a: $(OBJS1)
|
||||
ar cr libjt9.a $(OBJS1)
|
||||
@ -38,7 +38,7 @@ libjt9.a: $(OBJS1)
|
||||
OBJS2 = jt9.o jt9a.o
|
||||
|
||||
jt9: $(OBJS2) libjt9.a
|
||||
g++ -o jt9 $(OBJS2) -lQtCore libjt9.a -lfftw3f -lgfortran
|
||||
g++ -o jt9 $(OBJS2) libjt9.a -lfftw3f -lgfortran -lQtCore
|
||||
cp jt9 ../../wsjtx_install
|
||||
|
||||
OBJS3 = jt9sim.o
|
||||
|
@ -3,16 +3,15 @@ subroutine jt9a
|
||||
! NB: this interface block is required by g95, but must be omitted
|
||||
! for gfortran. (????)
|
||||
|
||||
#ifndef UNIX
|
||||
interface
|
||||
function address_jt9()
|
||||
integer*1, pointer :: address_jt9
|
||||
end function address_jt9
|
||||
end interface
|
||||
#endif
|
||||
|
||||
integer*1 attach_jt9,lock_jt9,unlock_jt9
|
||||
integer size_jt9
|
||||
integer*1, pointer :: address_jt9,p_jt9
|
||||
integer*1, pointer :: p_jt9
|
||||
character*80 cwd
|
||||
logical fileExists
|
||||
common/tracer/limtrace,lu
|
||||
|
@ -1,4 +1,4 @@
|
||||
//--------------------------------------------------------------- MainWindow
|
||||
//---------------------------------------------------------------- MainWindow
|
||||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
#include "devsetup.h"
|
||||
|
Loading…
Reference in New Issue
Block a user