• Freetype 安装时提示 make: Nothing to be done for `unix'


    [Software-Freetype] Freetype 安装时提示 make: Nothing to be done for `unix'  

    官网下载的第三方软件包,编译安装会报以下错误,解决办法如下:

    第一种:
    make: Nothing to be done for `all' 解决方法

    1.这句提示是说明你已经编译好了,而且没有对代码进行任何改动。

    若想重新编译,可以先删除以前编译产生的目标文件:
    make clean
    然后再
    make

    实在不行就:
    #ldconfig
    上面所说的方法并不能解决题目上的错误,看下面的方法。
     
    第二种方法:
    make: Nothing to be done for `unix'.
     
    centos5.8下安装freetype出错处理
     
    configure: creating ./config.status 
    config.status: creating unix-cc.mk 
    config.status: creating unix-def.mk 
    config.status: creating freetype-config 
    config.status: creating freetype2.pc 
    config.status: creating ftconfig.h 
      www.2cto.com  
    FreeType build system -- automatic system detection 
     
    make: Nothing to be done for `unix'.
     
    处理办法:
     builds/unix在freetype下载解压的目录下。
     先进入 builds/unix目录,然后在里边运行./configure命令,运行该命令不会出现上边错误。
    #cd  /usr/local/src/freetype-2.5.3/builds/unix
    # ./configure --prefix=/usr/local/freetype --enable-shared
     
     
     
  • 相关阅读:
    100个精彩的开源游戏
    poj 2104 K-th Number
    Redis源代码分析-内存数据结构intset
    android音乐播放器开发 SweetMusicPlayer 实现思路
    MySQL 二进制日志(Binary Log)
    Node.js 博客实例(六)留言功能
    HBase总结(十二)Java API 与HBase交互实例
    window+Apache 配置虚拟主机(2)
    Web Service那点事
    JSP基本语法
  • 原文地址:https://www.cnblogs.com/linux-super-meng/p/4045052.html
Copyright © 2020-2023  润新知