|
楼主 |
发表于 2009-9-18 01:42:09
|
显示全部楼层
跟着提示终于configure成功了,但是make最后说all-recursive……
贴一下我的configure.ac
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.64])
AC_INIT([eva], [qt4-76])
AC_CONFIG_SRCDIR([src/evamain.h])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR(admin)
KDE_SET_PREFIX
# Checks for programs.
AC_PROG_CXX
AC_PROG_AWK
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_RANLIB
AM_INIT_AUTOMAKE
AC_PROG_LIBTOOL
# Checks for libraries.
# FIXME: Replace `main' with a function in `-lkhtml':
AC_CHECK_LIB([khtml], [main])
# Checks for header files.
AC_PATH_X
AC_CHECK_HEADERS([arpa/inet.h inttypes.h malloc.h stdlib.h string.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_UINT32_T
AC_TYPE_UINT8_T
# Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_FUNC_MALLOC
AC_CHECK_FUNCS([memmove memset mkdir rmdir socket strchr strncasecmp strstr])
AC_CONFIG_FILES([Makefile
doc/Makefile
doc/en/Makefile
po/Makefile
po/zh_CN/Makefile
src/Makefile
src/api/Makefile
src/api/filetrans/Makefile
src/image/Makefile
src/image/face/Makefile
src/image/smiley/Makefile
src/image/theme/Makefile
src/libeva/Makefile
src/libeva/libcustompic/Makefile
src/libeva/libft/Makefile
src/libeva/libuh/Makefile
src/sound/Makefile
src/ui/Makefile])
AC_OUTPUT
[ 本帖最后由 DaNmarner 于 2009-9-18 01:56 编辑 ] |
|