b73c5212c6
- integrate pre-configure into Makefile
38 lines
972 B
Plaintext
38 lines
972 B
Plaintext
--- internals.c.orig Tue Jan 12 13:59:45 1993
|
|
+++ internals.c Sun Jan 23 00:06:49 2000
|
|
@@ -22,6 +22,9 @@
|
|
|
|
# include "debug.h"
|
|
# include "cdrom_globs.h"
|
|
+#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
|
+# include "cdrom_freebsd.h"
|
|
+#endif
|
|
#ifdef sun
|
|
# include "cdrom_sun.h"
|
|
#endif
|
|
@@ -29,7 +32,7 @@
|
|
# include "cdrom_sgi.h"
|
|
#endif
|
|
|
|
-
|
|
+static void scan_update();
|
|
static XtIntervalId ivid = -1;
|
|
static XtIntervalId scanivid = -1;
|
|
static XtIntervalId stativid = -1;
|
|
@@ -170,7 +173,6 @@
|
|
struct msf track_start;
|
|
struct msf start_addr, end_addr;
|
|
int curtrack;
|
|
- extern void scan_update();
|
|
|
|
if (cdrom_get_curmsf(&start_addr) == -1) {
|
|
debug_printf(1, "rew: error reading location\n");
|
|
@@ -304,7 +306,6 @@
|
|
struct msf start_addr, end_addr, next_start;
|
|
char t;
|
|
int curtrack;
|
|
- extern void scan_update();
|
|
|
|
if (cdrom_get_curmsf(&start_addr) == -1) {
|
|
debug_printf(1, "ff: error reading location\n");
|