메뉴 건너뛰기

리눅스 관련 모음

본문시작

조회 수 8171 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

국산 통나무 수공예 남원제기, 남원목기

자료가 도움이 되셨다면
혼수용품제수용품 필요시
남원제기 공식 홈페이지 http://남원제기.kr
남원목기 공식 홈페이지 http://otchil.kr
에서 구매 해 주세요
정성껏 모시겠습니다.
 
./configure
이상없이 컴파일 실행 후
make 실행시 아래와 같은 에러 발생 하였다.


gcc -DHAVE_CONFIG_H -DEXEEXT=\"\" -I. -I.. -I..
/lib  -I../intl -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1   -O2 -march=native -c careadlinkat.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\"\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1   -O2 -march=native -c malloca.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\"\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1   -O2 -march=native -c progname.c
In file included from progname.c:26:0:
./stdio.h:1010:1: error: 'gets' undeclared here (not in a function)
make[2]: *** [progname.o] Error 1
make[2]: Leaving directory `/usr/src/libiconv-1.14/srclib'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/usr/src/libiconv-1.14/srclib'
make: *** [all] Error 2

다음과 같이
srclib/stdio.h  파일 1010줄을 다음과 같이 추가하여 수정한다.


--- srclib/stdio.in.h.orig 2011-08-07 16:42:06.000000000 +0300
+++ srclib/stdio.in.h 2013-01-10 15:53:03.000000000 +0200
@@ -695,7 +695,9 @@
 /* It is very rare that the developer ever has full control of stdin,
    so any use of gets warrants an unconditional warning.  Assume it is
    always declared, since it is required by C89.  */
+#if defined(__GLIBC__) && !defined(__UCLIBC__) && !__GLIBC_PREREQ(2, 16)
_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
+#endif
 #endif

♠ 주의 사항
make distclean  또는 make clean 명령 실행하면 수정했던 파일이 초기화 되므로
반드시
./configure 실행 후
make 실행하고 에러 발생하면

srclib/stdio.h 수정하고
cd ..  후
곹, 바로
make
make install
실행해야 한다.

  srclib/stdio.h 파일은 make를 실행해야 생성이 되더라고......

   

  1. 리눅스 명령어로 IP 주소 변경하기.

    Date2015.04.06 Category에러해결 By햇빛소년 Views856
    Read More
  2. IPV4 주소 오류 식별되지 않은 네트워크 인식 문제

    Date2015.03.08 Category에러해결 By햇빛소년 Views1053
    Read More
  3. redis 2.8.19 설치하기

    Date2015.02.27 Category설치관련 By햇빛소년 Views1580
    Read More
  4. win8.1 F8 안전모드 부팅하기

    Date2015.02.22 Category에러해결 By햇빛소년 Views739
    Read More
  5. zone_resigninc:dns_journal_open -> unexpected error

    Date2015.02.07 Category에러해결 By햇빛소년 Views0
    Read More
  6. mysql 계정사용자 추가하기.

    Date2015.01.11 Category설치관련 By햇빛소년 Views1216
    Read More
  7. CentOS7 firewall 사용시 spamd: could not create INET socket on 127.0.0.1:783:

    Date2014.11.04 Category에러해결 By햇빛소년 Views3748
    Read More
  8. 네임서버(NameServer) 설정 및 점검 사이트

    Date2014.11.01 Category에러해결 By햇빛소년 Views3459
    Read More
  9. [win8] 호스트된 네트워크를 시작할 수 없습니다.

    Date2014.10.30 Category에러해결 By햇빛소년 Views3682
    Read More
  10. 유동IP(DDNS)+공유기+apache서버1+apache서버2+proxy로 도메인 포워딩.

    Date2014.10.28 Category설치관련 By햇빛소년 Views3480
    Read More
  11. CentOS-7 Network 설정에 관하여....

    Date2014.10.27 Category에러해결 By햇빛소년 Views7707
    Read More
  12. CentOS 7 rc.local 자동실행 boot

    Date2014.10.26 Category에러해결 By햇빛소년 Views23880
    Read More
  13. httpd 서비스는 chkconfig 를 지원하지 않습니다.

    Date2014.10.25 Category에러해결 By햇빛소년 Views4656
    Read More
  14. php5:::configure: error: Cannot find libmysqlclient_r under /usr/local/mysql

    Date2014.10.24 Category에러해결 By햇빛소년 Views7508
    Read More
  15. centos 7 : modsecurity 컴파일 설치시 iconv 찾지 못하는 에러...

    Date2014.10.18 Category에러해결 By햇빛소년 Views3972
    Read More
  16. centos 7 : iconv 컴파일 설치시 에러 해결

    Date2014.10.18 Category설치관련 By햇빛소년 Views8171
    Read More
  17. php 소스컴파일시 - /usr/bin/ld: cannot find -lltdl 에러 날 때.

    Date2014.10.17 Category에러해결 By햇빛소년 Views3814
    Read More
  18. 처음 설치 해 보는 mariadb 소스설치

    Date2014.10.16 Category설치관련 By햇빛소년 Views5627
    Read More
  19. 경영학과의 눈물… 예고된 취업 바늘구멍

    Date2014.10.12 Category설치관련 By햇빛소년 Views4048
    Read More
  20. html코딩 dtd선언 - <!DOCTYPE HTML PUBLIC

    Date2014.07.21 Category설치관련 By햇빛소년 Views4729
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 Next
/ 10