mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
1fadc80500
- Add MAINTAINER line - Support CC/CFLAGS/PREFIX properly - Shorten pkg/DESCR and add README file from distribution source PR: 16035 Submitted by: tkato@prontomail.ne.jp
27 lines
494 B
Plaintext
27 lines
494 B
Plaintext
*** main.c.orig Tue Jan 9 13:00:03 1996
|
|
--- main.c Sun Jan 9 06:47:30 2000
|
|
***************
|
|
*** 9,16 ****
|
|
|
|
#include "apple.h"
|
|
#include <curses.h>
|
|
#define REF_DELAY 2000
|
|
! #define ROMFILE "apple.rom"
|
|
|
|
extern char prodosroot[];
|
|
|
|
--- 9,21 ----
|
|
|
|
#include "apple.h"
|
|
#include <curses.h>
|
|
+
|
|
#define REF_DELAY 2000
|
|
!
|
|
! /* Where is the default rom file?? */
|
|
! #ifndef ROMFILE
|
|
! #define ROMFILE "%%PREFIX%%/libdata/apple2/prodos-2e.rom"
|
|
! #endif
|
|
|
|
extern char prodosroot[];
|
|
|