]> git.pld-linux.org Git - packages/libmikmod.git/blob - libmikmod-AC_LIBOBJ.patch
s/LIBOBJS/AC_LIBOBJ/ in configure.in and makefile.in files.
[packages/libmikmod.git] / libmikmod-AC_LIBOBJ.patch
1 --- libmikmod-3.1.10/libmikmod/Makefile.in~     Tue Jul 23 12:37:36 2002
2 +++ libmikmod-3.1.10/libmikmod/Makefile.in      Tue Jul 23 12:37:36 2002
3 @@ -20,7 +20,7 @@
4  VPATH = @srcdir@
5  
6  DLOBJS=@DLOBJS@
7 -LIBOBJS=@LIBOBJS@
8 +AC_LIBOBJS=@AC_LIBOBJ@
9  LIBRARY_LIB=@LIBRARY_LIB@
10  
11  CC=@CC@
12 @@ -33,7 +33,7 @@
13  COMPILE=$(LIBTOOL) --silent --mode=compile $(CC) $(DEFS) $(CFLAGS) -I$(top_srcdir)/include -I$(top_builddir) -I$(top_builddir)/include -DMIKMOD_H=$(top_srcdir)/include/mikmod.h
14  
15  LIB = libmikmod.la
16 -OBJ = $(LIBOBJS) $(DLOBJS) \
17 +OBJ = $(AC_LIBOBJ) $(DLOBJS) \
18        drv_AF.lo drv_aix.lo drv_alsa.lo drv_esd.lo drv_hp.lo drv_nos.lo \
19        drv_oss.lo drv_pipe.lo drv_raw.lo drv_sam9407.lo drv_sgi.lo \
20        drv_stdout.lo drv_sun.lo drv_ultra.lo drv_wav.lo \
21 --- libmikmod-3.1.10/configure.in~      Tue Jul 23 12:36:59 2002
22 +++ libmikmod-3.1.10/configure.in       Tue Jul 23 12:36:59 2002
23 @@ -134,9 +134,8 @@
24  AC_PROG_CPP
25  AC_PROG_INSTALL
26  AC_PROG_LN_S
27 -AM_PROG_LIBTOOL
28 +AC_PROG_LIBTOOL
29  AC_PROG_MAKE_SET
30 -AC_PROG_RANLIB
31  
32  # Check if makeinfo support html output. If it doesn't, pretend it's missing
33  # rather than failing rebuilding the documentation.
34 @@ -377,7 +376,7 @@
35  AC_CHECK_FUNCS(setenv snprintf srandom)
36  AC_REPLACE_FUNCS(strcasecmp strdup strstr)
37  # Change extension, as we use libtool
38 -LIBOBJS="`echo $LIBOBJS|sed -e 's/\.o/\.lo/g'`"
39 +AC_LIBOBJ="`echo $AC_LIBOBJ|sed -e 's/\.o/\.lo/g'`"
40  
41  AC_HEADER_EGREP(srandom,math.h,AC_DEFINE(SRANDOM_IN_MATH_H))
42  
This page took 0.031446 seconds and 3 git commands to generate.