Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 921138
Collapse All | Expand All

(-)a/configure.ac (-2 / +11 lines)
Lines 186-194 dnl AC_PROG_CC Link Here
186
dnl CFLAGS=$user_cflags
186
dnl CFLAGS=$user_cflags
187
MORECFLAGS=""
187
MORECFLAGS=""
188
dnl  we need  AC_SYS_LARGEFILE and AC_FUNC_FSEEKO
188
dnl  we need  AC_SYS_LARGEFILE and AC_FUNC_FSEEKO
189
LARGEFILECFLAGS=""
189
AC_SYS_LARGEFILE
190
AC_SYS_LARGEFILE
190
AS_IF([test "x$ac_cv_sys_file_offset_bits" = xno],[ac_cv_sys_file_offset_bits=0])
191
dnl AS_IF([test "x$ac_cv_sys_file_offset_bits" = xno],[ac_cv_sys_file_offset_bits=0])
191
AC_SUBST(ac_cv_sys_file_offset_bits)
192
dnl AC_SUBST(ac_cv_sys_file_offset_bits
193
AS_CASE([$ac_cv_sys_largefile_opts],
194
  ["none needed"], [],
195
  ["support not detected"], [],
196
  dnl otherwise it is a compiler flag
197
  [LARGEFILECFLAGS="$ac_cv_sys_largefile_opts"]
198
  )
199
MORECFLAGS="$LARGEFILECFLAGS"
200
AC_SUBST(LARGEFILECFLAGS)
192
201
193
dnl AS_IF([test "x$user_cflags" = x || test "x$user_cflags" = x-m32],
202
dnl AS_IF([test "x$user_cflags" = x || test "x$user_cflags" = x-m32],
194
dnl [
203
dnl [
(-)a/nauty-h.in (-7 lines)
Lines 60-72 it is necessary to check they are correct. Link Here
60
#define FLEX_ARRAY_OK @flex_array_ok@
60
#define FLEX_ARRAY_OK @flex_array_ok@
61
 /* whether the compiler supports flexible array members in structures */
61
 /* whether the compiler supports flexible array members in structures */
62
62
63
#define _FILE_OFFSET_BITS @ac_cv_sys_file_offset_bits@
64
#if _FILE_OFFSET_BITS == 64
65
#define _LARGEFILE_SOURCE
66
#else
67
#undef _FILE_OFFSET_BITS
68
#endif
69
70
/* Support of gcc extensions __builtin_clz, __builtin_clzl, __builtin_clzll */
63
/* Support of gcc extensions __builtin_clz, __builtin_clzl, __builtin_clzll */
71
#ifndef HAVE_HWLZCNT
64
#ifndef HAVE_HWLZCNT
72
#define HAVE_HWLZCNT @have_hwlzcnt@
65
#define HAVE_HWLZCNT @have_hwlzcnt@
(-)a/nauty-pc.in (-1 / +1 lines)
Lines 9-12 Version: @PACKAGE_VERSION@ Link Here
9
URL: @PACKAGE_URL@
9
URL: @PACKAGE_URL@
10
Libs: -L${libdir} -l@PACKAGE@
10
Libs: -L${libdir} -l@PACKAGE@
11
Libs.private: -lpthread
11
Libs.private: -lpthread
12
Cflags: -I${includedir}
12
Cflags: -I${includedir} @LARGEFILECFLAGS@

Return to bug 921138