Accommodate some gfortran changes after upgrade to Ubuntu 12.04.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@3119 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2013-04-02 15:36:33 +00:00
parent 9390a7d19d
commit f27c560cf6
3 changed files with 5 additions and 11 deletions

View File

@ -1,18 +1,14 @@
subroutine m65a
! NB: this interface block is required by g95, but must be omitted
! for gfortran. (????)
#ifndef UNIX
interface
function address_m65()
integer*1, pointer :: address_m65
end function address_m65
end interface
#endif
integer*1 attach_m65,lock_m65,unlock_m65
integer size_m65
integer*1, pointer :: address_m65,p_m65
integer*1, pointer :: p_m65
character*80 cwd
logical fileExists
common/tracer/limtrace,lu

View File

@ -1,4 +1,4 @@
//------------------------------------------------------------ MainWindow
//------------------------------------------------------------- MainWindow
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "devsetup.h"

View File

@ -53,11 +53,9 @@ FORMS += mainwindow.ui about.ui devsetup.ui widegraph.ui \
RC_FILE = map65.rc
unix {
INCLUDEPATH += $$quote(/usr/include/qwt-qt4)
LIBS += -lfftw3f /usr/lib/libgfortran.so.3
INCLUDEPATH += -lqwt
LIBS += ../map65/libm65/libm65.a
LIBS += /usr/lib/libqwt-qt4.so
LIBS += -lportaudio
LIBS += -lfftw3f -lportaudio -lgfortran
#LIBS +- -lusb
}