naver / arcus-c-client

ARCUS C client
https://github.com/naver/arcus
Apache License 2.0
12 stars 16 forks source link

INTERNAL: Print 'arcus-c-client', not 'libmemcached' when compiling #280

Closed ing-eoking closed 10 months ago

ing-eoking commented 10 months ago

./configure 을 성공적으로 수행할 경우 아래와 같은 메시지가 출력됩니다.

Configuration summary for libmemcached version 1.13.2_52

   * Installation prefix:       /usr/local
   * System type:               apple-darwin22.6.0
   * Host CPU:                  x86_64
   * C Compiler:                Apple clang version 15.0.0 (clang-1500.0.40.1)
   * Assertions enabled:        yes
   * Debug enabled:             no
   * Warnings as failure:       yes

해당 버전(1.13.2)은 libmemcached 가 아니며, 컴파일 또한 arcus-c-client에 대한 것이므로 이를 수정합니다.

Configuration summary for arcus-c-client version 1.13.2_52

   * Installation prefix:       /usr/local
   * System type:               apple-darwin22.6.0
   * Host CPU:                  x86_64
   * C Compiler:                Apple clang version 15.0.0 (clang-1500.0.40.1)
   * Assertions enabled:        yes
   * Debug enabled:             no
   * Warnings as failure:       yes

추가적으로 config/version.pl 에 사용되지 않는 libmemcached 버전 정보가 들어있는데 주석 처리를 할까요?

# LIBMEMCACHED VERSION
my $libmemcached_version = "0.53";
jhpark816 commented 10 months ago

libmemcached 버전 정보가 사용되지 않지만, 그대로 두시죠.