diff -Naur x264-snapshot-20090427-2245/configure x264-snapshot-20090427-2245-magellan/configure --- x264-snapshot-20090427-2245/configure 2009-04-27 22:45:11.000000000 +0200 +++ x264-snapshot-20090427-2245-magellan/configure 2009-05-01 12:41:14.000000000 +0200 @@ -463,7 +463,6 @@ echo "SONAME=libx264.so.$API" >> config.mak echo 'SOFLAGS=-Wl,-soname,$(SONAME)' >> config.mak fi - echo 'default: $(SONAME)' >> config.mak fi ./version.sh diff -Naur x264-snapshot-20090427-2245/Makefile x264-snapshot-20090427-2245-magellan/Makefile --- x264-snapshot-20090427-2245/Makefile 2009-04-27 22:45:11.000000000 +0200 +++ x264-snapshot-20090427-2245-magellan/Makefile 2009-05-01 12:43:55.000000000 +0200 @@ -80,8 +80,8 @@ $(SONAME): .depend $(OBJS) $(OBJASM) $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(SOFLAGS) $(LDFLAGS) -x264$(EXE): $(OBJCLI) libx264.a - $(CC) -o $@ $+ $(LDFLAGS) +x264$(EXE): $(OBJCLI) + $(CC) -o $@ $+ $(LDFLAGS) `pkg-config --libs x264` checkasm: tools/checkasm.o libx264.a $(CC) -o $@ $+ $(LDFLAGS) @@ -143,21 +143,9 @@ rm -f config.mak config.h x264.pc rm -rf test/ -install: x264$(EXE) $(SONAME) - install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir) - install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig - install -m 644 x264.h $(DESTDIR)$(includedir) - install -m 644 libx264.a $(DESTDIR)$(libdir) - install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig +install: x264$(EXE) + install -d $(DESTDIR)$(bindir) install x264$(EXE) $(DESTDIR)$(bindir) - $(RANLIB) $(DESTDIR)$(libdir)/libx264.a -ifeq ($(SYS),MINGW) - $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir)) -else - $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX)) - $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir)) -endif - $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir)) uninstall: rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a