mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
7613a06931
Xmixer includes two programs, xmixer and gmixer. xmixer uses Athena widgets and gmixer uses GTK+. It can change the volume for multiple devices, select input device(s) for recording, hide devices you don't want to see, and has batch support. PR: 14555 Submitted by: Trevor Johnson <trevor@jpj.net>
17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
--- main.c.orig Sat Aug 21 15:26:37 1999
|
|
+++ main.c Tue Oct 26 23:47:37 1999
|
|
@@ -22,7 +22,13 @@
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h> /* free() */
|
|
+#if HAVE_GETOPT_H
|
|
#include <getopt.h>
|
|
+#else
|
|
+extern int getopt();
|
|
+extern char *optarg;
|
|
+extern int optind;
|
|
+#endif
|
|
#include <limits.h>
|
|
#include "gui.h"
|
|
#include "mixer.h"
|