diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-08-10 17:35:26 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-08-10 17:35:26 +0000 |
commit | 612647c7af4c4f298187b2867d3db1bf44107d98 (patch) | |
tree | 0da9c4c4073bde8eef9a7b802cbeb46ed076899d | |
parent | 1382238c7431cc4dda493b1dae98079a33e06432 (diff) | |
download | xine-lib-612647c7af4c4f298187b2867d3db1bf44107d98.tar.gz xine-lib-612647c7af4c4f298187b2867d3db1bf44107d98.tar.bz2 |
fix alignment check
CVS patchset: 5270
CVS date: 2003/08/10 17:35:26
-rw-r--r-- | configure.ac | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 70a381b5a..d31ccbe71 100644 --- a/configure.ac +++ b/configure.ac @@ -973,6 +973,9 @@ fi dnl Flags not supported by all *cc* variants AC_TRY_CFLAGS("-Wall", wall="-Wall", wall="") +dnl check for __attribute__ ((aligned ())) +dnl WARNING! Do not move this check behind the $(MULTIPASS_CFLAGS)! +AC_C_ATTRIBUTE_ALIGNED dnl Common cflags for all platforms CFLAGS="$CFLAGS $wall -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE \$(MULTIPASS_CFLAGS)" @@ -1284,13 +1287,6 @@ AM_CONDITIONAL(HAVE_ARMV4L, test x"$enable_armv4l" = "xyes") dnl --------------------------------------------- -dnl gcc __attribute__ ((aligned ())) -dnl --------------------------------------------- -AC_C_ATTRIBUTE_ALIGNED - - - -dnl --------------------------------------------- dnl XINE_ROOTDIR does not work if architecture independent files are dnl installed to another place than architecture dependent files !!! dnl --------------------------------------------- |