diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-10 14:16:59 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-10 14:16:59 -0400 |
commit | 68a59d5714f4cf1ac536d347c879995fb4685475 (patch) | |
tree | 802cf417cd110ad008008cb30a15bce85619e57f /src/input/libreal | |
parent | 9621ee24fcaf6fa2c66eeca53eb00b4618e2ad61 (diff) | |
download | xine-lib-68a59d5714f4cf1ac536d347c879995fb4685475.tar.gz xine-lib-68a59d5714f4cf1ac536d347c879995fb4685475.tar.bz2 |
Remove -D_LARGEFILE64_SOURCE from AM_CPPFLAGS
This is a transitional macro that's normally defined by the system includes if
_GNU_SOURCE is defined, which it will be because of AC_GNU_SOURCE. It's only
used by GNU libc. I cannot find anything in any of the code built by these
Makefiles that uses any of the types, structures, or functions that defining
this macro produces.
Diffstat (limited to 'src/input/libreal')
-rw-r--r-- | src/input/libreal/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/libreal/Makefile.am b/src/input/libreal/Makefile.am index 500dfb910..5fb056195 100644 --- a/src/input/libreal/Makefile.am +++ b/src/input/libreal/Makefile.am @@ -1,7 +1,7 @@ include $(top_srcdir)/misc/Makefile.common AM_CFLAGS = $(DEFAULT_OCFLAGS) $(VISIBILITY_FLAG) -AM_CPPFLAGS = -D_LARGEFILE64_SOURCE -I$(srcdir)/../librtsp +AM_CPPFLAGS = -I$(srcdir)/../librtsp noinst_LTLIBRARIES = libreal.la |