]> git.pld-linux.org Git - packages/mplayer.git/blob - mplayer-assembly.patch
- too late for epoch revert (package already on ftp) - bumped back to 3
[packages/mplayer.git] / mplayer-assembly.patch
1 --- MPlayer-1.0pre4/configure.orig      2004-07-11 12:56:31.000000000 +0000
2 +++ MPlayer-1.0pre4/configure   2004-07-11 13:31:30.000000000 +0000
3 @@ -6307,15 +6307,19 @@
4  
5  /* Define this if your system has strlcpy */
6  $_def_strlcpy
7 +#ifndef __ASSEMBLY__
8  #ifndef HAVE_STRLCPY
9  unsigned int strlcpy (char *dest, const char *src, unsigned int size);
10  #endif
11 +#endif
12  
13  /* Define this if your system has strlcat */
14  $_def_strlcat
15 +#ifndef __ASSEMBLY__
16  #ifndef HAVE_STRLCAT
17  unsigned int strlcat (char *dest, const char *src, unsigned int size);
18  #endif
19 +#endif
20  
21  /* Define this if your system has fseeko */
22  $_def_fseeko
23 @@ -6323,8 +6327,10 @@
24  /* Need these for FILE and off_t an config.h is usually before other includes*/
25  #include <stdio.h>
26  #include <sys/types.h>
27 +#ifndef __ASSEMBLY__
28  int fseeko(FILE *, off_t, int);
29  #endif
30 +#endif
31  
32  $_def_localtime_r
33  
34 --- MPlayer-1.0pre4/libavcodec/Makefile.orig    2004-04-27 23:21:27.000000000 +0000
35 +++ MPlayer-1.0pre4/libavcodec/Makefile 2004-07-11 13:58:24.000000000 +0000
36 @@ -209,7 +209,7 @@
37         $(CC) $(CFLAGS) -c -o $@ $< 
38  
39  %.o: %.S
40 -       $(CC) $(CFLAGS) -c -o $@ $<
41 +       $(CC) $(CFLAGS) -D__ASSEMBLY__ -c -o $@ $<
42  
43  depend: $(SRCS)
44         $(CC) -MM $(CFLAGS) $^ 1>.depend
This page took 0.037029 seconds and 3 git commands to generate.