mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 12:12:35 +03:00
Explicitly open dos.library
This commit is contained in:
parent
eba0fd70eb
commit
32adce8a09
@ -5,7 +5,7 @@
|
||||
CFLAGS += -std=c99 -Dnsamiga
|
||||
|
||||
ifneq ($(SUBTARGET),os3)
|
||||
CFLAGS += -O2 -finline-functions -U__STRICT_ANSI__ -D__USE_INLINE__ -D__USE_BASETYPE__
|
||||
CFLAGS += -O2 -mstrict-align -finline-functions -U__STRICT_ANSI__ -D__USE_INLINE__ -D__USE_BASETYPE__
|
||||
else
|
||||
CFLAGS += -O2 -DPATH_MAX=1024 -D__m68k__ -m68020
|
||||
endif
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "utils/utils.h"
|
||||
#include "utils/log.h"
|
||||
|
||||
#include <proto/dos.h>
|
||||
#include <proto/exec.h>
|
||||
#include <proto/intuition.h>
|
||||
#include <proto/utility.h>
|
||||
@ -219,6 +220,7 @@ bool ami_libs_open(void)
|
||||
AMINS_LIB_OPEN("asl.library", 37, Asl, "main", 1, true)
|
||||
AMINS_LIB_OPEN("datatypes.library", 39, DataTypes, "main", 1, true)
|
||||
AMINS_LIB_OPEN("diskfont.library", 40, Diskfont, "main", 1, true)
|
||||
AMINS_LIB_OPEN("dos.library", 37, DOS, "main", 1, true)
|
||||
AMINS_LIB_OPEN("gadtools.library", 37, GadTools, "main", 1, true)
|
||||
AMINS_LIB_OPEN("graphics.library", 40, Graphics, "main", 1, true)
|
||||
AMINS_LIB_OPEN("icon.library", 44, Icon, "main", 1, true)
|
||||
@ -321,6 +323,7 @@ void ami_libs_close(void)
|
||||
AMINS_LIB_CLOSE(Asl)
|
||||
AMINS_LIB_CLOSE(DataTypes)
|
||||
AMINS_LIB_CLOSE(Diskfont)
|
||||
AMINS_LIB_CLOSE(DOS)
|
||||
AMINS_LIB_CLOSE(GadTools)
|
||||
AMINS_LIB_CLOSE(Graphics)
|
||||
AMINS_LIB_CLOSE(Icon)
|
||||
|
Loading…
Reference in New Issue
Block a user