~ubuntu-branches/ubuntu/precise/flac/precise-updates

« back to all changes in this revision

Viewing changes to src/libFLAC/Makefile.lite

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529225636-ljeff8xxip09qaap
Tags: 1.1.4-1
* New upstream release. closes: #405167, #411311
  - libOggFLAC and libOggFLAC++ have been merged into libFLAC, so
    remove their corresponding packages.
  - Because of the API changes required to effect the above, there has
    been yet another soname bump. libflac7 -> libflac8 and
    libflac++5 -> libflac++6. Emails have been dispatched to the
    maintainers of dependent packages.
* Some notes on patches that were removed:
  - 02_stdin_stdout, 06_manpage_mention_utf8_convert: merged upstream
  - 08_manpage_warnings: Upstream has changed the manpage so it defintely
    can't fit in in 80 cols, so just forget about it. We'll live.
  - 05_eof_warnings_are_errors: Upstream decided to add a -w option to
    flac to treat all warnings as errors. I am going to defer to that
    for now, but if people think it's stupid let me know and I'll port
    the patch forward.
  - 04_stack_smasher: was a backport from 1.1.3, so it's obsolete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#  libFLAC - Free Lossless Audio Codec library
2
 
#  Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
 
2
#  Copyright (C) 2001,2002,2003,2004,2005,2006,2007  Josh Coalson
3
3
#
4
4
#  Redistribution and use in source and binary forms, with or without
5
5
#  modification, are permitted provided that the following conditions
44
44
DEFINES = -DFLAC__CPU_IA32 -DFLAC__USE_3DNOW -DFLAC__HAS_NASM -DFLAC__ALIGN_MALLOC_DATA
45
45
endif
46
46
endif
47
 
INCLUDES = -I./include -I$(topdir)/include
 
47
INCLUDES = -I./include -I$(topdir)/include -I$(OGG_INCLUDE_DIR)
48
48
DEBUG_CFLAGS = -DFLAC__OVERFLOW_DETECT
49
49
 
50
50
ifeq ($(DARWIN_BUILD),yes)
61
61
endif
62
62
 
63
63
SRCS_C = \
64
 
        bitbuffer.c \
65
64
        bitmath.c \
 
65
        bitreader.c \
 
66
        bitwriter.c \
66
67
        cpu.c \
67
68
        crc.c \
68
 
        file_decoder.c \
69
 
        file_encoder.c \
70
69
        fixed.c \
71
70
        float.c \
72
71
        format.c \
75
74
        memory.c \
76
75
        metadata_iterators.c \
77
76
        metadata_object.c \
78
 
        seekable_stream_decoder.c \
79
 
        seekable_stream_encoder.c \
 
77
        ogg_decoder_aspect.c \
 
78
        ogg_encoder_aspect.c \
 
79
        ogg_helper.c \
 
80
        ogg_mapping.c \
80
81
        stream_decoder.c \
81
82
        stream_encoder.c \
82
 
        stream_encoder_framing.c
 
83
        stream_encoder_framing.c \
 
84
        window.c
83
85
 
84
86
include $(topdir)/build/lib.mk
85
87