patches/vlc-03-1141-oss.diff
author tom68
Sun, 27 Mar 2011 01:01:04 +0000
changeset 3378 1133106f35d7
child 3891 48a2f90f7e22
permissions -rw-r--r--
experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3378
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     1
--- vlc-1.1.4.1/modules/audio_output/oss.c.orig	2010-09-24 11:31:59.000000000 +0200
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     2
+++ vlc-1.1.4.1/modules/audio_output/oss.c	2010-11-06 23:35:32.537525437 +0100
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     3
@@ -32,6 +32,9 @@
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     4
 #endif
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     5
 
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     6
 #include <fcntl.h>                                       /* open(), O_WRONLY */
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     7
+#ifdef sun
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     8
+#include <sys/file.h>
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
     9
+#endif
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
    10
 #include <sys/ioctl.h>                                            /* ioctl() */
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
    11
 #include <unistd.h>                                      /* write(), close() */
1133106f35d7 experimental/SFEvlc-1.1.4.1.spec: release to experimental, needs SFEqt47-gpp in new path layout and more work to find QT
tom68
parents:
diff changeset
    12