Changeset ea5f3f6 in git
- Timestamp:
- Jun 26, 2013, 10:23:52 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 99b54a02eca0fe05e0d8b5bd6b722ba3946a46ea
- Parents:
- 741c7090dd3b618a24f57b75f1a21c3a19ce119f
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-06-26 22:23:52+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-07-09 22:31:47+02:00
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r741c709 rea5f3f6 19 19 AM_SANITY_CHECK 20 20 21 #22 # - Check for CC and CXX but be careful about CFLAGS.23 21 SING_RESET_FLAGS() 24 22 SING_CHECK_SET_ARGS() 25 23 26 24 #! 27 AC_PROG_CC28 AC_PROG_CXX25 # AC_PROG_CC 26 # AC_PROG_CXX 29 27 AC_PROG_CPP 30 28 AC_PROG_CXXCPP … … 65 63 AC_FUNC_MALLOC 66 64 67 SING_CHECK_PIPE65 # SING_CHECK_PIPE 68 66 69 67 # check for cpu properties -
factory/configure.ac
r741c709 rea5f3f6 19 19 AC_CONFIG_HEADER(config.h) 20 20 21 AM_MAINTAINER_MODE22 21 AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules 23 22 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) 24 23 m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) 25 24 25 AM_MAINTAINER_MODE 26 26 27 # Add pre'prefixed config 27 28 AX_PREFIX_CONFIG_H([config.h],[],[config.h]) … … 33 34 SING_CHECK_SET_ARGS() 34 35 35 AC_PROG_CC36 AC_PROG_CXX36 #AC_PROG_CC 37 #AC_PROG_CXX 37 38 # 38 39 # - check for some other programs. -
gfanlib/configure.ac
r741c709 rea5f3f6 8 8 #AC_CONFIG_HEADERS([config.h]) 9 9 10 AM_MAINTAINER_MODE11 10 AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules 12 11 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) 13 12 m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) 14 13 14 AM_MAINTAINER_MODE 15 16 SING_RESET_FLAGS() 17 SING_CHECK_SET_ARGS() 18 15 19 # Checks for programs. 16 AC_PROG_CC17 AC_PROG_CXX20 # AC_PROG_CC 21 # AC_PROG_CXX 18 22 AC_PROG_LN_S 19 23 #AC_PROG_INSTALL … … 66 70 AC_C_INLINE 67 71 68 SING_RESET_FLAGS()69 SING_CHECK_SET_ARGS()70 71 72 72 73 #AC_MSG_RESULT($ac_cv_singuname) -
libpolys/configure.ac
r741c709 rea5f3f6 11 11 m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) 12 12 13 14 13 dnl Check if build env is sane 15 14 AM_SANITY_CHECK 16 15 17 #18 16 # - Check for CC and CXX but be careful about CFLAGS. 19 #20 17 SING_RESET_FLAGS() 21 18 SING_CHECK_SET_ARGS() … … 60 57 AC_TYPE_SIZE_T 61 58 62 SING_CHECK_PIPE59 # SING_CHECK_PIPE 63 60 64 61 # check for cpu properties -
m4/flags.m4
r741c709 rea5f3f6 120 120 fi 121 121 122 122 123 # SING_SHOW_FLAGS([before PROG_C_CC]) 123 124 125 AC_PROG_CC 126 AC_PROG_CXX 124 127 ]) -
resources/configure.ac
r741c709 rea5f3f6 11 11 m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) 12 12 13 14 13 dnl Check if build env is sane 15 14 AM_SANITY_CHECK 16 15 17 # 18 # - Check for CC and CXX but be careful about CFLAGS. 19 # 20 test "${CFLAGS+set}" = set || cflags_expl_set=no 21 AC_PROG_CC 22 test "${CXXFLAGS+set}" = set || cxxflags_expl_set=no 23 AC_PROG_CXX 24 if test "x$GCC" != xyes && test "x$GXX" != xyes; then 25 AC_MSG_WARN(you better use gcc to compile Factory) 26 else 27 if test "x$GXX" = xyes && test "x$cxxflags_expl_set" = xno; then 28 AC_MSG_WARN([we use \`' as default for \`CXXFLAGS' 29 (instead of the configure default \`-g -O')]) 30 fi 31 if test "x$GCC" = xyes && test "x$cflags_expl_set" = xno; then 32 AC_MSG_WARN([we use \`' as default for \`CFLAGS' 33 (instead of the configure default \`-g -O')]) 34 fi 35 fi 16 SING_RESET_FLAGS() 17 SING_CHECK_SET_ARGS() 36 18 37 19 AM_PROG_CC_C_O … … 58 40 # LT_INIT(dlopen disable-static) # doesn't work on PowerPC! 59 41 60 61 SING_CHECK_PIPE 62 SING_RESET_FLAGS() 63 SING_CHECK_SET_ARGS() 64 65 66 # CFLAGS 67 if test "x$GCC" = xyes && test "x$cflags_expl_set" = xno; then 68 CFLAGS="" 69 fi 70 71 # CXXFLAGS 72 if test "x$GXX" = xyes && test "x$cxxflags_expl_set" = xno; then 73 CXXFLAGS="" 74 fi 42 # SING_CHECK_PIPE 75 43 76 44 AC_CONFIG_FILES([Makefile]) -
xalloc/configure.ac
r741c709 rea5f3f6 12 12 13 13 AC_PROG_MAKE_SET 14 AC_PROG_CC15 AC_PROG_CPP14 # AC_PROG_CC 15 # AC_PROG_CPP 16 16 17 17 AC_PROG_LN_S
Note: See TracChangeset
for help on using the changeset viewer.